text
stringlengths
10
953k
export { zingchart, ZC } from '../../es6';
import req from "../../ApplicationRequest"; /** * * @param {String} internalId Internal ID of the server to delete */ function forceDeleteServer(internalId: number) { const Req = new req(process.env.APPLICATION_PTEROLY_HOST, process.env.APPLICATION_PTEROLY_KEY); return Req.deleteRequest('ForceDeleteServer', inter...
/******************************************************************************* * * Copyright (c) 2020 Red Hat, Inc. * * Licensed Materials - Property of IBM * (c) Copyright IBM Corporation 2019. All Rights Reserved. * * Note to U.S. Government Users Restricted Rights: * Use, duplication or disclosure restrict...
import React from 'react' export const ThemeContext = React.createContext({ theme: '', icon: '', toggle: () => {} })
import { Component, OnInit, ViewChild } from '@angular/core'; import { DespesasDashboardService } from 'src/app/service/despesas-dashboard.service'; import { Parlamentar } from 'src/app/model/parlamentar.model'; import { ParlamentarService } from 'src/app/service/parlamentar.service'; import { MatTableDataSource } from...
import { _DefaultIntegerHyperParameterRanges } from "./_DefaultIntegerHyperParameterRanges"; import { _DefaultContinuousHyperParameterRanges } from "./_DefaultContinuousHyperParameterRanges"; import { _DefaultCategoricalHyperParameterRanges } from "./_DefaultCategoricalHyperParameterRanges"; import { Structure as _Stru...
import * as messages from '@cucumber/messages' import { Query } from '@cucumber/gherkin-utils' import IClock from './IClock' import HookTestStep from './HookTestStep' import { MakeErrorMessage } from './ErrorMessageGenerator' import IStopwatch from './IStopwatch' import { IHook, ITestStep } from './types' export defau...
import { BigNumber } from '@ethersproject/bignumber' export type V2FundingCycleData = { duration: BigNumber weight: BigNumber discountRate: BigNumber ballot: string // hex, contract address } export type V2FundingCycleMetadataGlobal = { allowSetController: boolean allowSetTerminals: boolean } export type...
import dotenv from 'dotenv'; import { Sequelize } from 'sequelize-typescript'; import path from 'path'; dotenv.config(); export const sequelize = new Sequelize({ database: process.env.DB_NAME, dialect: 'mysql', host: process.env.DB_HOSTNAME, username: process.env.DB_USERNAME, password: process.env.DB_PASSWO...
export interface Task { id?: string title: string description: string }
import type { Identifier, Expression, ObjectExpression } from '@babel/types'; import type { NodePath } from '@babel/traverse'; import type { Plugin } from './types.h'; const INNER_COMMENT = '__tramvai_stack_provider__'; export const providerStackPlugin: Plugin = ({ types: t }) => { const isProvider = (path: NodePat...
// ag-grid-enterprise v21.2.2 import { ExcelOOXMLTemplate } from 'ag-grid-community'; declare const protectionFactory: ExcelOOXMLTemplate; export interface Protection { locked: boolean; hidden: boolean; } export default protectionFactory;
import { ComputedValue, IDependencyTree, IDerivation, IDerivationState, TraceMode, getDependencyTree, globalState, runReactions } from "../internal" export interface IDepTreeNode { name: string observing?: IObservable[] } export interface IObservable extends IDepTreeNode { ...
/** * @module Intacct/SDK/Functions/Common/NewQuery/QueryFilter */ /** * Copyright 2020 Sage Intacct, Inc. * * 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/...
import { useState, useEffect, Dispatch, SetStateAction } from 'react' export function useLocalStorage<T>(key: string, defaultValue: T): [T, Dispatch<SetStateAction<T>>] { const [ state, setState ] = useState<T>(() => { try { const localValue = window.localStorage.getItem(key) return localValue ? JS...
import * as bcrypt from "bcrypt"; export class PasswordUtil { static async hash(password: string): Promise<string> { const salt = await bcrypt.genSalt(); return await bcrypt.hash(password, salt); } static async compare(storedPassword: string, suppliedPassword: string): Promise<boolean> { return awai...
import { Component, Input, OnInit } from '@angular/core'; @Component({ selector: 'ttl-card', templateUrl: './ttl-card.component.html', styleUrls: ['./ttl-card.component.scss'] }) export class TtlCardComponent implements OnInit { @Input() title: string; @Input() subtitle: string; @Input() actionLabel: strin...
/* eslint-disable no-await-in-loop */ import { testApiHandler } from 'next-test-api-route-handler'; import { getEnv } from 'universe/backend/env'; import { toss } from 'toss-expression'; import { DUMMY_KEY, isKeyAuthentic, addToRequestLog, isDueForContrivedError, isRateLimited } from 'universe/backend'; imp...
import Button from '@celo/react-components/components/Button' import ListItem from '@celo/react-components/components/ListItem' import TextButton from '@celo/react-components/components/TextButton' import colors from '@celo/react-components/styles/colors' import fontStyles from '@celo/react-components/styles/fonts' imp...
export const ENDPOINTS = { GET_LIVE_TOKEN_DATA: 'http://127.0.0.1:2020/crypto/getLiveTokenData', SAVE_LAST_CANDLE_DATA_TO_DB: 'http://127.0.0.1:2020/crypto/saveLastCandleDataToDb', FIND_LAST_CANDLE_RECORDS_FOR_TOKEN: 'http://127.0.0.1:2020/crypto/findLastCandleRecordsForToken', };
<?xml version="1.0" ?><!DOCTYPE TS><TS language="cs" version="2.0"> <defaultcodec>UTF-8</defaultcodec> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About BitcoinPositive</source> <translation>O BitcoinPositiveu</translatio...
import cx from "classnames"; import { Link, navigate, graphql, StaticQuery, GatsbyLinkProps } from "gatsby"; import * as React from "react"; import styled from "styled-components"; import menuIcon from "../../img/icon-nav-plus-black-mobile.svg"; import { useMediaQuery, tabletQuery } from "../../utils"; import { closeMe...
/** * Copyright 2020 Google 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 agreed to...
import { FrameworkItemFactory } from "./interfaces/framework-item-factory"; import { AsvsNist80053Rev4MappingItem } from "./asvs-nist-80053Rev4-mapping-item"; /** * Designed to parse the excel found https://docs.google.com/spreadsheets/d/1SEhSXKBDiiUZIhBtq0EM_lHCgw5Y19A7mCORRa-3Zwc */ export class AsvsNist80053Rev4Ma...
import * as React from 'react'; import { Color } from '../../../datatypes/Color'; import { Tree, Config as TreeImplConfig } from './Tree'; export interface TreeConfig extends TreeImplConfig { color: Color; } export interface Props { config: TreeConfig; grid: number[][]; } export class TreeDrawer extends Rea...
import { WindowControll } from "./WindowControll" import { ComponentPhone } from "./ComponentPhone" new WindowControll() new ComponentPhone(<HTMLDivElement>document.querySelector('.component-phone'))
import { Component, OnInit } from "@angular/core"; @Component({ selector: "app-automation", templateUrl: "./automation.component.html", styleUrls: ["./automation.component.css"], }) export class AutomationComponent implements OnInit { constructor() {} ngOnInit() {} }
import { Request, Response } from "express"; import { connect } from "../module/connection"; import Book from "../models/book"; import report from '../models/reportModel'; import feedback from '../models/feedbackModel'; export class PokeService { // Report public getReport(req: Request, res: Response) { let {re...
declare module 'react-cool-inview' { import { RefObject } from 'react'; interface IntersectionObserverEntryV2 extends IntersectionObserverEntry { readonly isVisible?: boolean; } interface ScrollDirection { vertical?: 'up' | 'down'; horizontal?: 'left' | 'right'; } export interface BaseEvent {...
import { Argv } from 'yargs' import Config from '../../service/config' import prompts from 'prompts' import { onCancel } from '../../util' import config from '../../config' export const command = 'set' export const desc = '增加 / 更改環境變數' export interface ConfigSetParams { interactive: boolean key: string value: ...
export interface Track { trackNumber: number; trackName: string; trackLength: string; trackPrice: number; }
/* tslint:disable */ // This file was automatically generated and should not be edited. // ==================================================== // GraphQL mutation operation: PublishChangeset // ==================================================== export interface PublishChangeset_publishChangesets { id: string; //...
import * as fs from "fs"; import * as os from "os"; import * as path from "path"; import * as rimraf from "rimraf"; import * as xmldom from "xmldom"; import { createTempDir, getFortifyPrepareConfig, getVersion, removeTmpDir, spawn } from "./utils"; const TMP = "build"; function updatePkgVersion(file: string, version:...
import { Descendant } from 'slate' export interface TextInfo { id: string data: Descendant[] error?: string } export async function fetchNote(id: string): Promise<TextInfo> { const res = await fetch(`${process.env.API_URL}/notes/${id}`) return res.json() } export async function saveNote( id: string, da...
/* tslint:disable max-line-length */ import { ComponentFixture, TestBed } from '@angular/core/testing'; import { Observable, of } from 'rxjs'; import { HttpHeaders, HttpResponse } from '@angular/common/http'; import { ActivatedRoute, Data } from '@angular/router'; import { App2TestModule } from '../../../test.module';...
import {Injectable, CanActivate, ExecutionContext} from '@nestjs/common'; import {AuthService} from './auth.service'; import {GqlExecutionContext} from '@nestjs/graphql'; import {UnauthorizedError} from 'type-graphql'; import {Reflector} from '@nestjs/core'; import {IS_PUBLIC_KEY} from './decorators/is-public.decorator...
import { IResponse, IContext } from '../../../types'; import { DatabaseClusterEvictionPolicy } from '..'; export interface IGetDatabaseClusterEvictionPolicyApiResponse { eviction_policy: DatabaseClusterEvictionPolicy; } export interface IGetDatabaseClusterEvictionPolicyApiRequest { database_cluster_id: string; } ...
import React from 'react' import { ControlInput } from './ControlInput' import { log, LevaErrors } from '../../utils/log' import { Plugins } from '../../plugin' import { Button } from '../Button' import { ButtonGroup } from '../ButtonGroup' import { Monitor } from '../Monitor' import { useInput } from '../../hooks' imp...
import * as React from 'react' import { getUserProfileWithProfilePic } from '../utils/functions/getUserData' import { getPrincipalAliasRequest } from '../utils/SynapseClient' import { MenuAction } from './UserCardContextMenu' import { UserProfile } from '../utils/synapseTypes/' import { SynapseConstants } from '../util...
import * as actionHelpers from './actions'; const ADD_NODE_PROCESS_PID = 'ADD_NODE_PROCESS_PID'; const REMOVE_NODE_PROCESS_PID = 'REMOVE_NODE_PROCESS_BY_PID'; const CLEAR_NODE_PROCESSES_PIDS = 'CLEAR_NODE_PROCESSES_PIDS'; export const addNodeProcessPid = actionHelpers.actionCreator<number>(ADD_NODE_PROCESS_PID); expo...
import * as React from 'react'; import {LinkProps} from './types'; //===----=---=-=--=--===--=-===----=---=-=--=--===--=-===----=---=-=--=--===--=-// export default function Link(props: LinkProps) { const classNames = getClassNames(props); if (props.notHref) { return ( <span onClick={()...
import React, { useContext } from 'react'; import type { FC } from 'react'; import { VIDEO_TYPE } from '../types'; import { videoModals } from '../constants'; import VideoInsertModal from '../toolbar/NewVideoInsertModal'; import { ModalContext } from 'ricos-modals'; import { RicosContext } from 'wix-rich-content-editor...
import AppConfig from 'config/config'; import * as ConfigUtils from 'config/config-utils'; import { BadgeStyle } from 'config/config-types'; describe('getDatabaseDisplayName', () => { it('returns given id if no config for that id exists', () => { const testId = 'fakeName'; expect(ConfigUtils.getDatabaseDispl...
import React, { FunctionComponent, ReactNode, useContext } from 'react'; import { observer } from 'mobx-react-lite'; import { DraggableProvided, DraggableRubric, DraggableStateSnapshot, Droppable, DroppableProvided } from 'react-beautiful-dnd'; import TableContext from '../../TableContext'; export interface TreeProps ...
const paginationFavourites = (videos: []) => { const isFavourite: boolean = true; const isAnyVideoFavourite: boolean = videos.some( (video: any) => video.isFavourite === isFavourite ); if (!isAnyVideoFavourite) { return []; } const favouriteVideos: any = videos.slice().filter((video: any) => { return video...
import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; import { ChannelCreateWithoutMessagingProviderInput } from './channel-create-without-messaging-provider.input'; import { ChannelCreateOrConnectWithoutMessagingProviderInput } from './channel-create-or-connect-without-messaging-provide...
export { default as LegacyPaymentStrategy } from './legacy-payment-strategy';
import * as React from "react"; import { CarbonIconProps } from "../../"; declare const ChartColumnTarget16: React.ForwardRefExoticComponent< CarbonIconProps & React.RefAttributes<SVGSVGElement> >; export default ChartColumnTarget16;
//----------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License file under the project root for license information. //---------------------------------------------------------------------------...
import { OnInit, OnDestroy, ChangeDetectorRef, NgZone } from '@angular/core' import { takeWhile } from 'rxjs/operators' import { ResourceCrudService } from '@app-seller/shared/services/resource-crud/resource-crud.service' import { FormGroup } from '@angular/forms' import { Router, ActivatedRoute } from '@angular/router...
import React from 'react'; import { noOp } from '../../common/env-and-consts'; import { Consumer, RecordingProject } from '../types'; interface RecordingProjectContextType { readonly recordingProject?: RecordingProject; readonly setRecordingProject: Consumer<RecordingProject>; } export const RecordingProjectCont...
import mongoose from 'mongoose'; import discord from 'discord.js'; export interface IRole { DiscordRoleID: string; RoleTemplate: string; Params: Array<string>; } interface IGEXP { RoleName: string; MinExp: number; } const RoleSchema = new mongoose.Schema({ DiscordRoleID: String, // The role ID of the dis...
import * as vscode from 'vscode'; import { FoamFeature } from '../types'; import { TextDecoder } from 'util'; import { getGraphStyle, getTitleMaxLength } from '../settings'; import { isSome } from '../utils'; import { Foam } from '../core/model/foam'; import { Logger } from '../core/utils/log'; import { fromVsCodeUri }...
import * as React from 'react'; import * as Redux from 'redux'; import { registerName, unregisterName, requestTransfer, acceptSale } from '../actions/nameService'; import { queryName, queryForSale } from '../api/nameService'; import RegisteredName from './RegisteredName'; import { NamesMap } from './wallet'; interface...
import Checkbox from './checkbox' export default Checkbox
import * as Redis from 'ioredis'; import { Injectable } from '@nestjs/common'; import { RedisService } from '@liaoliaots/nestjs-redis'; import authConstants from './auth-constants'; @Injectable() export default class AuthRepository { private readonly redisClient: Redis.Redis; constructor(private readonly redisS...
import {ComponentInterface} from '../../ECS_lib/types'; export class Velocity implements ComponentInterface{ value: number; constructor(value: number = 15) { this.value = value; } }
type AppOption = { setAuth: boolean, useTypescript: boolean, useWebpack: boolean, entry: string, useReact: boolean, appName: string, domain: string, username: string, password: string, type: 'Plugin' | 'Customization', appID: number, pluginName: string } type WebpackPara...
import { IMDB } from './imdb_api'; import { MoviesNames } from './movies_names'; import { Http } from './http_req'; import { Movie } from './movie'; export class Movies { constructor( public movienames: MoviesNames, public imdb: IMDB, public http: Http ) {} getMovies(): Promise<any> { return th...
import React from 'react'; import styled from 'styled-components'; import { ColorProps } from '@heathmont/moon-themes'; import { themed } from '@heathmont/moon-utils'; const Svg = (props: React.SVGProps<SVGSVGElement>) => ( <svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http...
import React, { useCallback, useEffect, useState } from "react"; import { dictionaryPath } from "../constants/dictionaryPath"; type DictionaryMap = Map<string, string>; interface Context { dictionary: DictionaryMap | undefined; setDictionary: (map: DictionaryMap) => void; } export const HexDictionaryContext = Reac...
import vscode from 'vscode'; import * as fs from 'fs'; export function generateOpenUserScaffoldSnippetFolderCommand(globalSnippetDir: string) { return async () => { const uri = vscode.Uri.file(globalSnippetDir); if (!fs.existsSync(uri.fsPath)) { fs.mkdirSync(uri.fsPath); } vscode.commands.exe...
export { telefuncConfig } from './telefuncConfig' export { onTelefunctionRemoteCallError } from './callTelefunc/onTelefunctionRemoteCallError' export type { TelefunctionError } from './TelefunctionError' export { __internal_fetchTelefunc } from './callTelefunc'
/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. * * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY */ export const pkgName = "@fluidframework/driver-base"; export const pkgVersion = "0.52.0";
import createDebug from "debug" import fs from "fs" import path from "path" const debug = createDebug("eslint:plugin-dprint") // eslint-disable-next-line no-shadow -- I'm not sure why, but `@types/node` doesn't contain WebAssembly in spite of it has been supported since 8.0.0. declare let WebAssembly: any // Load `d...
import * as CryptoJS from 'crypto-js'; import {Encryption} from './encryption'; import {OTPStorage, OTPType} from './interface'; import {OTPEntry} from './otp'; export class BrowserStorage { private static async getStorageLocation() { const managedLocation = await ManagedStorage.get('storageArea'); if (mana...
import { MonoTypeOperatorFunction } from '../types'; /** * Returns an Observable that mirrors the source Observable, but will call a specified function when * the source terminates on complete or error. * The specified function will also be called when the subscriber explicitly unsubscribes. * * ## Examples * Exe...
import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { getUrl } from '../helpers/helpers'; import { ACCESS_TOKEN } from '../helpers/helpers'; import { User } from '../models/user'; @Injectable({ providedIn: 'root' }) export class Use...
import {Card} from './Card'; import {Token} from '../Token'; import {Customer} from '../response/Customer'; import {Splitting} from '../Splitting'; import {StrongCustomerAuthentication} from './sca/StrongCustomerAuthentication'; import {Request} from './PhRequest'; export class ChargeCitRequest extends Request { ...
import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; import { CommonModule } from 'src/common/common.module'; import { LocaionMappingServices } from './location-mapping.service'; import { LocationController } from './location.controller'; import { LocationService } from './location....
import { Publication } from "../models/publication"; import { Link } from "../models/publication-link"; import { IStreamAndLength } from "r2-utils-js/dist/es6-es2015/src/_utils/zip/zip"; export interface ITransformer { supports(publication: Publication, link: Link): boolean; transformStream(publication: Publica...
import { Component, OnInit } from '@angular/core'; import { FormBuilder, Validators } from '@angular/forms'; import { ActivatedRoute } from '@angular/router'; import { Observable } from 'rxjs'; import { filter, map } from 'rxjs/operators'; import * as moment from 'moment'; import { DATE_TIME_FORMAT } from 'app/shared/c...
import { ConfigParams } from 'pip-services-commons-node'; import { IConfigurable } from 'pip-services-commons-node'; import { IReferences } from 'pip-services-commons-node'; import { IReferenceable } from 'pip-services-commons-node'; import { ICommandable } from 'pip-services-commons-node'; import { CommandSet } from '...
import * as React from "react"; import { JSX } from "react-jsx"; import { IFluentIconsProps } from '../IFluentIconsProps.types'; const CopyArrowRight16Filled = (iconProps: IFluentIconsProps, props: React.HTMLAttributes<HTMLElement>): JSX.Element => { const { primaryFill, className } = iconProps; return <...
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * 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 a...
import textdata from './textdata.js' import join from '../join.js' import star from '../star.js' const nonEscaped = join(star(textdata)) export default nonEscaped
import { Component, OnInit } from '@angular/core'; import { NgModel } from '@angular/forms'; import { Router } from '@angular/router'; import { LoginData } from 'src/app/class/login-data'; import { AuthService } from '../../../services/auth.service'; @Component({ selector: 'app-login', templateUrl: './login.compon...
/*! * @license * Copyright 2016 Alfresco Software, Ltd. * * 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 app...
import { Button, Dialog, DialogContent, DialogHeader, Text } from 'junoblocks' import { useState } from 'react' export const TestnetDialog = () => { const [isShowing, setShowing] = useState(true) const requestClose = () => setShowing(false) return ( <Dialog isShowing={isShowing} onRequestClose={requestClos...
import collect from 'collect.js'; import * as $ from 'jquery'; var journalCtrl = [ '$scope', '$localStorage', 'journalFactory', 'accountFactory', 'Upload', 'Env', function ($scope, $localStorage, journalFactory, accountFactory, Upload, Env) { $scope.journals = []; $scope.tmp_journals = []; $scope.journal = { ...
export const log = console
import { PlaywrightWorkerArgs, test } from '@playwright/test'; import { cwd, DESIGNER_DATA_PATH, executablePath, loadFixture, mainPath, randomDataPath } from '../playwright/paths'; // NOTE: the DESIGNER_DATA_PATH argument is only used for overriding paths for migration testing, // if we remove migration from insomnia...
describe("Visiting login page", () => { describe("as an unauthenticated user", () => { it("works", () => { cy.visit("/login"); cy.findByTestId("AUTH_LAYOUT_HEADER").should("be.visible"); cy.findByLabelText("Email *").type("not-a-real-user@gmail.com"); }); it("log in successfully", () => ...
import { Frame, Page } from 'playwright'; import { waitUntil, report, WaitUntilOptions } from '../../../utils'; import { SelectorFluent } from '../../../selector-api'; import { isHandleDisabled, isHandleReadOnly } from '../../handle-actions'; export async function isSelectorObjectDisabled( selector: SelectorFluent, ...
import React from 'react'; import TextField from 'uniforms-bootstrap3/TextField'; import { mount } from 'enzyme'; import createContext from './_createContext'; test('<TextField> - renders an input', () => { const element = <TextField name="x" />; const wrapper = mount(element, createContext({ x: { type: String } ...
import { AbstractClient } from "../../../common/abstract_client"; import { ClientConfig } from "../../../common/interface"; import { EvaluationRequest, EvaluationResponse } from "./hcm_models"; /** * hcm client * @class */ export declare class Client extends AbstractClient { constructor(clientConfig: ClientConfi...
export * from './store'; export * from './notification.component';
import "./icon.scss"; import React, { ReactNode } from "react"; import { findDOMNode } from "react-dom"; import { NavLink } from "react-router-dom"; import { LocationDescriptor } from "history"; import { autobind, cssNames } from "../../utils"; import { TooltipDecoratorProps, withTooltip } from "../tooltip"; import is...
export * from "./fonts";
import { ChangeDetectorRef, NgZone, OnDestroy, Pipe, PipeTransform, } from '@angular/core'; import { NextObserver, ObservableInput, Unsubscribable } from 'rxjs'; import { CdAware, createCdAware, createRender } from '../core'; /** * @Pipe PushPipe * * @description * * The `ngrxPush` pipe serves as a drop...
import { DbIconDefinition } from "@digibearapp/digibear-common-types"; declare const dbEuroSignSmall: DbIconDefinition; export default dbEuroSignSmall;
/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import _ from "lodash"; import { RequestParams } from "@elastic/elasticsearch"; import { RequestHandlerContext, OpenSearchDashboardsRequest, OpenSearchDashboardsResponseFactory, IOpenSearchDashboardsResponse, ILegacyCustomClus...
/* eslint-disable react/destructuring-assignment */ import React, { useEffect } from 'react' import { FiAlertTriangle, FiCheckCircle, FiInfo, FiXCircle, FiXOctagon } from 'react-icons/fi' import { useToast } from '@hooks/ToastContext' import { Container } from './styles' import { Props } from './types' const Toast: R...
import GameObject from "./gameObject"; import Vector from "./vector"; import Rectangle from "./rectangle"; import Game from "./game"; import Bounded from "./bounded"; import Brick from "~brick"; const SPEED = 72; export default class Ball implements GameObject, Bounded { size: Vector = Vector.create(16, 16); ...
<TS language="mn" version="2.1"> <context> <name>AddressBookPage</name> <message> <source>Create a new address</source> <translation>Шинэ хаяг нээх</translation> </message> <message> <source>&amp;New</source> <translation>&amp;Шинэ</translation> </message> <messag...
// generated from terraform resource schema import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; /** * AWS Route 53 */ export interface DataAwsRoute53ZoneConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/aws/d/route53_...
/** * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ export declare const VERSION: string;
import { Item } from "./Item"; import { Member } from "./Member"; export interface Class extends Item { readonly Members: readonly Member[]; readonly MemoryCategory: string; readonly Superclass: string; }
// Copyright IBM Corp. 2020. All Rights Reserved. // Node module: @loopback/filter // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT import {expect} from '@loopback/testlab'; import { FilterBuilder, filterTemplate, isFilter, KeyOf, Where, Where...
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ComboboxMobileComponent } from './combobox-mobile.component'; import { MobileModeConfig } from '../../utils/interfaces/mobile-mode-config'; import { DynamicComponentService } from '../../utils/dynamic-component/dynamic-component....