text stringlengths 10 953k |
|---|
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ar" version="2.1">
<context>
<name>AboutDialog</name>
<message>
<location filename="../forms/aboutdialog.ui" line="+14"/>
<source>About DarkLiskCoin</source>
<translation>عن البلاك كوين</translation>
</message>
<message>
<l... |
import { WorkItemType } from 'azure-devops-extension-api/WorkItemTracking';
import { ConditionalChildren } from 'azure-devops-ui/ConditionalChildren';
import { ZeroData } from 'azure-devops-ui/ZeroData';
import ProcessedItem from '../../common/models/ProcessedItem';
import WorkItemDisplay from './WorkItemDisplay';
in... |
import {TestBed, ComponentFixture, inject} from '@angular/core/testing';
import {By} from '@angular/platform-browser';
import {createGenericTestComponent} from '../test/common';
import {Component} from '@angular/core';
import {NgbAccordionModule, NgbPanelChangeEvent, NgbAccordionConfig, NgbAccordion} from './accordio... |
export * from "./Savingsplans";
// smithy-typescript generated code
export * from "./SavingsplansClient";
export * from "./commands";
export * from "./models";
export { SavingsplansServiceException } from "./models/SavingsplansServiceException"; |
const upload = require('../upload')
const find = require('find')
const fsPromises = require('fs').promises
const { COPYFILE_EXCL } = require('fs').constants
const clc = require("cli-color")
const clrMsg = clc.bgXterm(56)
exports.save = function(retrievalPath, saveName){
var shortName = saveName
saveName = up... |
import { AstronomicalObject, Coordinate, ITextBubble, Tour } from "../interfaces";
import {
ADD_TEXT_BUBBLE,
ADD_TO_DISPLAY_TIME,
DECREMENT_TIME_STEP_INDEX,
INCREMENT_TIME_STEP_INDEX,
PAUSE_TIME,
REMOVE_TEXT_BUBBLE,
SET_CREDITS_MODAL_OPEN,
SET_CURRENT_TOUR,
SET_DETAILS_PANE_OPEN,
SET_DISPLAY_TIME,
... |
import { Icon } from '@/components/icon'
Icon.register({
'truck-loading': {
width: 640,
height: 512,
paths: [
{
d:
'M50.2 375.6l-49.6-185.5c-2.3-8.5 2.8-17.3 11.3-19.6l77.3-20.7 24.8 92.7 61.8-16.5-24.8-92.7 77.2-20.8c8.5-2.3 17.3 2.8 19.6 11.3l49.7 185.5c2.3 8.5-2.8 17.3-11.3 19.... |
import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
@InputType()
export class PostUncheckedCreateWithoutAuthorInput {
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, {nullable:t... |
export interface IUser {
uid: string;
isAdministrator?: boolean;
isDefaultUser?: boolean;
username: string;
password?: string;
} |
import { TransportClient } from "../mod.ts";
const transport = await TransportClient("127.0.0.1:8080");
transport.on("RES_TEST", (data: string) => {
console.log(data);
});
transport.emit("test", "Hello World !"); |
import { ArticleService } from './article.service';
import { Test, TestingModule } from '@nestjs/testing';
jest.useFakeTimers();
class ApiServiceMock {}
describe('Article Service', () => {
let app: TestingModule;
let articlesService: ArticleService;
beforeAll(async () => {
const ApiServiceProvider = {
... |
export enum LoginState {
LoggedIn, NotLoggedIn
} |
import { IIterator } from '@phosphor/algorithm';
import { ISignal } from '@phosphor/signaling';
import { ServerConnection } from '..';
import { Kernel } from './kernel';
/**
* An implementation of a kernel manager.
*/
export declare class KernelManager implements Kernel.IManager {
/**
* Construct a new kerne... |
import { Notification } from '../Notification';
describe('Notification', () => {
it('should add a new notification error', () => {
const notification = new Notification();
notification.addError({
context: 'test',
message: 'test error'
});
expect(notification.messages('test')).toContain(... |
/*
* For a detailed explanation regarding each configuration property and type check, visit:
* https://jestjs.io/docs/configuration
*/
export default {
// All imported modules in your tests should be mocked automatically
// automock: false,
// Stop running tests after `n` failures
// bail: 0,
// The dir... |
import http from "./http.service";
import { BaseUrl } from "../helpers/constants";
import { getJwt } from "./auth.service";
import { LoginModel } from "../models/login.model";
import { RegisterModel } from "../models/register.model";
import { authBearerHeaders } from "../helpers/httpHeaders";
http.setJwt(getJwt());
e... |
import { svg } from "./_svg.js";
/**
* https://demo.thi.ng/umbrella/hiccup-carbon-icons/#DIRECTION_STRAIGHT_RIGHT_FILLED
*/
// prettier-ignore
export const DIRECTION_STRAIGHT_RIGHT_FILLED = svg(
["path", { d: "M28 2H4a2 2 0 00-2 2v24a2 2 0 002 2h24a2 2 0 002-2V4a2 2 0 00-2-2zm-8 21l-1.414-1.414L23.172 17H6v-2h17... |
export * from './IErr.types'; |
import { ReactElement } from 'react';
import { Container } from './styles';
interface IProps {
name: string;
}
function HrComponent({ name }: IProps): ReactElement {
return (
<Container>
{name && <span>{name}</span>}
<hr />
</Container>
);
}
export default HrComponent; |
import { createParamDecorator, ExecutionContext } from '@nestjs/common';
export const CurrentUser = createParamDecorator(
(_: never, context: ExecutionContext) => {
const request = context.switchToHttp().getRequest();
return request.currentUser;
},
); |
import { InferType, object } from 'yup';
import fetchRest from '../../../utils/fetchRest';
import { DiscordBotSchema } from '../types';
const GetBotOutputSchema = object({
result: DiscordBotSchema,
});
export type GetDiscordBotOutput = InferType<typeof GetBotOutputSchema>;
export const getDiscordBot = async (): Pr... |
import { globalStyle } from '@vanilla-extract/css';
import { theme } from '../theme.css';
export const importMe = null;
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
globalStyle(
'html,' +
'body,' +
'p,' +
'ol,' +
'ul,' +
'li,' +
'dl,' +
'dt,' +
'dd,' ... |
import React from 'react';
import { BrowserRouter as Router } from 'react-router-dom';
import { Helmet } from 'react-helmet';
import {
ApolloClient,
ApolloProvider,
InMemoryCache,
createHttpLink
} from '@apollo/client';
import { Header } from './components/Header';
import { Routes } from './components/R... |
<TS language="id_ID" version="2.1">
<context>
<name>AddressBookPage</name>
<message>
<source>Right-click to edit address or label</source>
<translation>Klik-kanan untuk mengubah alamat atau label</translation>
</message>
<message>
<source>Create a new address</source>
<tr... |
import { Controller, Get, Post, Patch, Delete, Param, Body } from '@nestjs/common';
import { CreateBookDto } from './create-book-dto.interface';
import { BookService } from './book.service';
import { Book } from './book.interface';
@Controller('books')
export class BooksController {
constructor(
private b... |
import { injectable, interfaces } from "inversify";
import { Observable, PartialObserver } from "rxjs";
import Container, { observe } from "./Container";
export interface IExtensionProvider<T> {
subscribe(observer?: PartialObserver<T>): any;
getAllExtensions(): T[];
getTaggedExtensions(tagName: string, tagValue... |
/*
artifact generator: C:\My\wizzi\stfnbssl\wizzi\packages\wizzi-js\dist\lib\artifacts\ts\module\gen\main.js
package: wizzi-js@0.7.8
primary source IttfDocument: C:\My\wizzi\stfnbssl\wizzi\packages\wizzi.site\.wizzi\server\src\middlewares\index.ts.ittf
utc time: Wed, 09 Jun 2021 05:04:16 GMT
*/
import {... |
/**
* Display Modal dialog for editing the race and gender of a cat
* and updating the details in the DynamoDB
*/
import PropTypes from "prop-types";
import React, { useState } from "react";
import {
Button,
Input,
Modal,
ModalBody,
ModalFooter,
ModalHeader,
Label,
Row,
Col,
Container,
} from "re... |
import React from 'react';
import { render, waitFor } from '@testing-library/react';
import { configureStore } from 'app/store/configureStore';
import { Provider } from 'react-redux';
import { RuleList } from './RuleList';
import { byTestId, byText } from 'testing-library-selector';
import { typeAsJestMock } from 'test... |
// パズルピースのインターフェース
export interface Position {
x: number;
y: number;
}
export interface SlideTo {
src: number;
dest: number;
}
export interface Piece {
id: string;
originPosition: Position;
position: Position;
missing: boolean;
slideTo?: SlideTo;
} |
import {
MiddlewareConsumer,
Module,
NestModule,
OnApplicationBootstrap,
OnApplicationShutdown,
OnModuleInit,
} from '@nestjs/common';
import { ModuleRef } from '@nestjs/core';
import cookieSession = require('cookie-session');
import { RequestHandler } from 'express';
import { ApiModule } from ... |
import type * as ts from 'typescript';
import { IsTsAutoMockRandomEnabled } from '../../../options/random';
import { PropertySignatureCache } from '../property/cache';
import { RandomPropertyAccessor } from '../random/random';
import { TypescriptHelper } from '../helper/helper';
import {
createCall,
createStringLit... |
import type * as T from './types'
export const increaseAction = (): T.IncreaseAction => ({
type: '@counter/increase'
})
export const decreaseAction = (): T.DecreaseAction => ({
type: '@counter/decrease'
}) |
export * from "./Availability.style";
export * from "./Availability"; |
import React, { useEffect, useState } from 'react'
import { useLocation } from 'react-router-dom'
import API, { graphqlOperation } from '@aws-amplify/api'
import { SearchSiteContent } from 'graphql/custom'
import { SearchQuery } from 'types/appsync/API'
import {
createStyles,
makeStyles,
Theme,
useTheme
} from ... |
export class EventEmitter {
constructor() {}
on(type: string, listener: any): any {
if (!_listeners) _listeners = {};
if (!_listeners[type]) _listeners[type] = [];
_listeners[type].push(listener);
return listener;
}
emit(eventName: string, ...rest: any[]): boolean {
let ret: boolean = fal... |
import CustomizationSettings from './CustomizationSettings';
export default CustomizationSettings; |
import { Component, OnInit } from '@angular/core';
import {
FeruiUtils,
FuiBaseFilter,
FuiFilterComponentInterface,
FuiFilterInterface,
FuiFilterOptionsEnum,
FuiFilterParamsInterface,
FuiFilterService,
FuiI18nService
} from '@ferui/components';
import { DatagridService } from '../datagrid/datagrid.ser... |
import { IComponentList } from './model/types';
import { OrderedSet } from 'immutable';
/**
* CanvasState的属性
*/
export interface ICanvasState {
// 鼠标样式
cursor: string;
// 画布当前组件集合
componentList: OrderedSet<IComponentList>;
// 画布大小
canvasSize: { width: number, height: number };
} |
/**
* Copyright 2020 Colin Doig. Distributed under the MIT license.
*/
import JsonResponse from '../JsonResponse';
export interface IGetVendorClientIdResponseOptions {
response?: string;
}
export default class GetVendorClientIdResponse extends JsonResponse {
private response?: string;
constructor(opt... |
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { PersonEditorComponent } from './person-editor.component';
describe('PersonEditorComponent', () => {
let component: PersonEditorComponent;
let fixture: ComponentFixture<PersonEditorComponent>;
beforeEach(async(() => {
TestBed... |
import { Arch, AsyncTaskManager, DebugLogger } from "builder-util";
import { PackageBuilder } from "builder-util/out/api";
import { AppInfo } from "./appInfo";
import { CompressionLevel, Platform, Target, TargetSpecificOptions } from "./core";
import { AfterPackContext, Configuration, FileAssociation, PlatformSpecificB... |
import { describe, expect, test } from '@jest/globals';
import { Entity, EntityRef } from '../ecs';
import { WithABC } from './helpers/entities';
import { getContext } from './helpers/setup';
class RefABC extends EntityRef<WithABC> {
public static readonly type = 'abc';
}
describe('entity references', () => {
co... |
export const KEY = {
ESCAPE: 27,
LEFT: 37,
RIGHT: 39,
UP: 38,
DOWN: 40,
SPACE: 32,
SHIFT: 16,
ENTER: 13,
BACK_SPACE: 8,
COMMAND: 91,
CONTROL: 17,
A: 'A'.charCodeAt(0),
C: 'C'.charCodeAt(0),
D: 'D'.charCodeAt(0),
E: 'E'.charCodeAt(0),
F: 'F'.charCodeAt(0),
... |
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'cs-detail',
templateUrl: './detail.component.html',
styleUrls: ['./detail.component.less']
})
export class DetailComponent implements OnInit {
className!: string | null;
oid!... |
export default [
'Abeyta',
'Abrego',
'Abreu',
'Acevedo',
'Acosta',
'Acuña',
'Adame',
'Adorno',
'Agosto',
'Aguayo',
'Aguilar',
'Aguilera',
'Aguirre',
'Alanis',
'Alaníz',
'Alarcón',
'Alba',
'Alcalá',
'Alcántar',
'Alcaraz',
'Alejandro',
'Alemán',
'Alfaro',
'Alicea',
'Alman... |
import { VStack } from '@chakra-ui/react'
import StatFormField from './StatFormField'
import useGetDailyValuePercent from './useGetDailyValuePercent'
type Props = {
canEdit: boolean
showsEnergyPercentFromFats?: boolean
}
function MacrosFormFields({
canEdit,
showsEnergyPercentFromFats = false,
}: Props) {
co... |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
/**
* SendinBlue API
* SendinBlue provide a RESTFul API that can be used with any languages. With this API, you will be able to : - Manage your campaigns and get the statistics - Manage your contacts - Send transactional Emails and SMS - and much more... You can download our wrappers at https://github.com/or... |
// Type definitions for word-extractor 1.0
// Project: https://github.com/morungos/node-word-extractor
// Definitions by: Rodrigo Saboya <https://github.com/saboya>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare class WordExtractor {
extract(documentPath: string | Uint8Array): Promise<W... |
import { IMovie, IMovieSearchPage } from 'models/api.model'
import { PageInfo } from 'models/movie.model'
import { useEffect, useRef, useState } from 'react'
import useArray from './array.hook'
import useFetch, { RequestStatus } from './fetch.hook'
function useMovieTopRated(): {
data: IMovie[]
status: RequestStatu... |
import * as React from "react";
import { Dimension } from "../../../common/models/dimension/dimension";
import { Essence } from "../../../common/models/essence/essence";
import { SortOn } from "../../../common/models/sort-on/sort-on";
import "./pinboard-measure-tile.scss";
export interface PinboardMeasureTileProps {
... |
import {Injectable} from '@angular/core';
import {HttpClient, HttpHeaders} from '@angular/common/http';
import {Observable} from 'rxjs/Observable';
import 'rxjs/add/observable/throw';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
// import {Bookmark} from '../domain/bookmark.mdl';
@Injectable()
exp... |
import React from 'react';
import { storiesOf } from '@storybook/react';
import { FormField } from '../';
import { Input } from '../../input';
storiesOf('Form Field', module).add('Field', () => (
<FormField
label="A required text input field"
description="Text input description"
errorMessage="This field ... |
import React, { ErrorInfo } from "react";
interface FallbackProps {
error?: Error;
resetErrorBoundary?: () => void;
}
function ErrorFallback(props: FallbackProps) {
return (
<div role="alert">
<p>Oops! Something went wrong:</p>
<pre>{props.error?.message}</pre>
<button onClick={props.resetE... |
export let tabbableSelector = "a[href], area[href], input:not([disabled]):not([tabindex=\'-1\']), " +
"button:not([disabled]):not([tabindex=\'-1\']),select:not([disabled]):not([tabindex=\'-1\']), " +
"textarea:not([disabled]):not([tabindex=\'-1\']), " +
"iframe, object, embed, *[tabindex]:not([tabindex=\'-1\']), ... |
import { get_module } from "../commands/module/helper";
import { Option } from "../options";
export class SlotOption extends Option {
public name = "slot";
public alias = "s";
public description = "Slot index in Module";
public isRequired = true;
public parse(value?: string) {
const mod = ... |
import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { FormGroup, FormBuilder } from '@angular/forms';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.less']
})
export class AppComponent implements OnIni... |
import { BTCStateProvider } from '../btc/btc';
import { CSP } from '../../../types/namespaces/ChainStateProvider';
export class BCHStateProvider extends BTCStateProvider {
constructor(chain: string = 'BCH') {
super(chain);
}
async getFee(params: CSP.GetEstimateSmartFeeParams) {
const { chain, network, t... |
// @target: es6
// repro mostly from https://github.com/Microsoft/TypeScript/issues/25065
function getProperty2<T, K extends keyof T>(obj: T, key: Extract<K, string>): T[K] {
return obj[key];
}
function getProperty3<T, K extends Extract<keyof T, string>>(obj: T, key: K): T[K] {
return obj[key];
}
const s = Sy... |
import {
Body,
Controller,
Get,
Param,
ParseUUIDPipe,
Patch,
Post,
} from '@nestjs/common';
import {
CreateStudentDto,
FindStudentResponseDto,
StudentResponseDto,
UpdateStudentDto,
} from './dto/student.dto';
import { StudentService } from './student.service';
@Controller('/students')
export clas... |
export { default as MuiThemeProvider } from './MuiThemeProvider';
export { default as withStyles, WithStyles, StyleRules, StyleRulesCallback, StyledComponentProps } from './withStyles';
export { default as withTheme } from './withTheme';
export { default as createMuiTheme, Theme } from './createMuiTheme'; |
/**
* @license
* Copyright 2019 Dynatrace LLC
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or ag... |
<?xml version="1.0" ?><!DOCTYPE TS><TS language="bg" version="2.1">
<context>
<name>AboutDialog</name>
<message>
<location filename="../forms/aboutdialog.ui" line="+14"/>
<source>About UniversalCurrency</source>
<translation type="unfinished"/>
</message>
<message>
<locat... |
import React, { FormEvent, useState } from 'react';
import { Link } from 'react-router-dom';
import * as Antd from 'antd';
import AntdSpin from 'antd/lib/spin';
import cn from 'classnames';
import Tooltip from 'components/antd/tooltip';
import ExternalLink from 'components/custom/externalLink';
import Icon from 'compo... |
/* eslint-disable @typescript-eslint/no-non-null-assertion */
import Skeleton from 'react-loading-skeleton';
import { useParams } from 'react-router-dom';
import Title from '../../common/layout/Title';
import { useGetOrderQuery } from './api';
import DetailScreen from './screens/Detail';
import OrdersScreen from './scr... |
import { Scalar, CustomScalar } from '@nestjs/graphql';
import { Kind, ValueNode } from 'graphql';
@Scalar('Timestamp', () => Date)
export class Timestamp implements CustomScalar<number, Date> {
description = '`Date` type as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.';... |
/* GENERATED FILE */
import * as React from "react";
import Svg, { Rect, Path, Line } from "react-native-svg";
import { IconProps } from '../lib'
function CloudRain(props: IconProps) {
return <Svg viewBox="0 0 256 256" width={props.size} height={props.size}
fill={props.color} {...props}><Rect width={256} height={25... |
import React from 'react';
import { deleteBook } from '@/service';
import { BookActionDialog, BookActionDialogProps } from './BookActionDialog';
import classes from './BookActions.module.scss';
export function DeleteBookPermanentlyDialog(props: BookActionDialogProps) {
return (
<BookActionDialog {...props} inten... |
export type FeatureFlags = {
admin: boolean
airdrop: boolean
audioAttachments: boolean
chatIndexProfilingEnabled: boolean
conflictResolution: boolean
dbCleanEnabled: boolean
fastAccountSwitch: boolean
foldersInProfileTab: boolean
kbfsOfflineMode: boolean
moveOrCopy: boolean
newTeamBuildingForChatA... |
import { E2EApi } from './e2eApi';
declare global {
const e2e: E2EApi;
} |
/// <reference lib="webworker" />
/* eslint-disable no-restricted-globals */
// Log build date and time of the service worker.
const buildDate = process.env.REACT_APP_BUILD_TIME;
console.debug('Service worker build on', new Date(parseInt(buildDate + "000")));
// Import Dexie Cloud Service Worker
import "dexie-cloud-a... |
/// <reference path="filewriter.d.ts" />
// http://www.w3.org/TR/file-writer-api/
function writeFile(writer:FileWriter): void{
function done(evt:Event): void{
alert("Write completed.");
}
function error(evt:Event): void{
alert("Write failed:" + evt);
}
var b:Blob = new Blob();
writer.onwrite = don... |
import { renameSync, existsSync } from "fs";
import { dirname, basename, join } from "path";
const postfix = ".lock";
const moveAsync = (sourcePath: string, destinationPath: string): Promise<string> => {
if (!existsSync(sourcePath)) {
return Promise.reject(`Can't find file '${sourcePath}'`);
}
const promise... |
import { EntityRepository, Repository } from 'typeorm';
import Transaction from '../models/Transaction';
interface Balance {
income: number;
outcome: number;
total: number;
}
@EntityRepository(Transaction)
class TransactionsRepository extends Repository<Transaction> {
public async getBalance(): Promise<Balan... |
import GlobalLayout from './global';
export default GlobalLayout; |
import { Children, PureComponent } from 'react';
import { findDOMNode } from 'react-dom';
interface ClosableProps {
children: React.ReactElement<any>;
isDisabled?: boolean;
onClose?: () => void;
}
export default class Closable extends PureComponent<ClosableProps> {
static defaultProps = {
isDi... |
export * from './AnimatedBorder'
export * from './AnimatedSwitch'
export * from './Button'
export * from './Checkbox'
export * from './DeviceTypes'
export * from './elements/InfoButton/InfoButton'
export * from './elements/lists/ExternalLinkListUnstyled'
export * from './elements/lists/LinkListUnstyled'
export * from '... |
import { SelectField, TextField } from 'components/FormField'
import { MenuItem } from '@material-ui/core'
import React from 'react'
import { StepperFormTargetProps } from 'components/NewExperiment/types'
import { toTitleCase } from 'lib/utils'
const actions = ['pod failure', 'pod kill', 'container kill']
export def... |
import { DragDropModule } from '@angular/cdk/drag-drop';
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { CoreModule } from 'src/app/core/core.module';
import { SharedModule } from 'src/app/shared/shared.module';
import { Ad... |
import * as React from 'react';
import { SxProps } from '@material-ui/system';
import { ButtonBaseTypeMap, ExtendButtonBase, ExtendButtonBaseTypeMap } from '../ButtonBase';
import { OverrideProps } from '../OverridableComponent';
import { Theme } from '../styles';
import { StepButtonClasses } from './stepButtonClasses'... |
/*
MIT License
Copyright (c) 2021 Looker Data Sciences, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modi... |
import {BasicRuleConfig} from "./_basic_rule_config";
import {ABAPRule} from "./_abap_rule";
import {ABAPFile} from "../files";
import {Issue, Statements} from "..";
import {IRuleMetadata, RuleTag} from "./_irule";
export class CallTransactionAuthorityCheckConf extends BasicRuleConfig {
}
export class CallTransactionA... |
import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient";
import { DeleteUserPermissionsBoundaryRequest } from "../models/models_0";
import {
deserializeAws_queryDeleteUserPermissionsBoundaryCommand,
serializeAws_queryDeleteUserPermissionsBoundaryCommand,
} from "../protocols/Aw... |
import { Injectable, EventEmitter } from '@angular/core';
import { Server } from './servers/server';
import { ServersService } from './servers/servers.service';
import * as forge from 'node-forge';
import * as query from 'query-string';
import { BehaviorSubject } from 'rxjs';
import { GameService } from './game.servic... |
export { Moonrise as default } from "./"; |
import { QualifierValue } from "../../../../internal/qualifier/QualifierValue.js";
/**
* @memberOf Qualifiers.FocusOn
* @extends {SDK.QualifierValue}
*/
declare class FocusOnValue extends QualifierValue {
readonly name: string;
constructor(name?: string);
toString(): string;
}
export { FocusOnValue }; |
export * from './SlugProject'; |
/**
*
* Asynchronously loads the component for SignUpPage
*
*/
import { lazyLoad } from 'utils/loadable';
export const ProfilePage = lazyLoad(
() => import('./index'),
module => module.ProfilePage,
); |
import { Priority } from "styled-components";
const priority: Priority = {
base: 1, // Everything else
low: 100, // For elements with same parent
header: 1000, // Above everything in the page, like header or footer
modal: 1200, // Super imposed on the page like modals
max: 1400, // Above everything
};
expor... |
/* eslint-disable @typescript-eslint/no-namespace */
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { ipcRenderer, IpcRenderer } from 'electron'
declare global {
namespace NodeJS {
interface Global {
ipcRenderer: IpcRenderer
}
}
}
// Since we disabled nodeIntegration we can reintroduce
... |
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import React from 'react';
import { mountWithIntl } from 'test_utils/enzyme_h... |
import { HttpClient } from '@angular/common/http';
import { Injectable, isDevMode, SecurityContext } from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
import { marked } from 'marked';
import { Observable } from 'rxjs';
declare var Prism: {
highlightAllUnder: (element: Element | Document... |
export { TablePipeline, useTablePipeline } from './pipeline'
import * as features from './features'
export { features } |
export * from './lib/identity-platform.service';
export * from './lib/identity-platform.http-interceptor'; |
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
import type { Signer } from 'ethers'
import { Contract, utils } from 'ethers'
import type { Provider } from '@ethersproject/providers'
import type { IUiPoolDataProvider, IUiPoolDataProviderInterface } from './UiPoolDataProvider'
const _abi = [
{
... |
export const DbIcon = (): JSX.Element => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
className='h-6 w-6'
fill='none'
viewBox='0 0 24 24'
stroke='currentColor'
>
<path
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth={1.5}
d='M4... |
import { Vector3 } from "./three-core";
export class Octree {
constructor(parameters?: any);
update(): void;
add(object: any, options?: any): any;
addDeferred(object: any, options?: any): any;
addObjectData(object: any, part: any): any;
remove(object: any): any;
extend(octree: Octree)... |
import { Meta, Story } from '@storybook/react'
import React from 'react'
import { BrandedStory } from '@sourcegraph/branded/src/components/BrandedStory'
import webStyles from '@sourcegraph/web/src/SourcegraphWebApp.scss'
import { Modal } from '.'
const config: Meta = {
title: 'wildcard/Modal',
component: Mod... |
/*
* Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.