text stringlengths 10 953k |
|---|
import * as SDP from 'sdp';
// ====================================================================
// Intermediate Object Descriptions
// ====================================================================
// These interfaces are the intermediary representations we use for
// parsed SDP data, independent of how we e... |
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ko_KR" version="2.1">
<context>
<name>AboutDialog</name>
<message>
<location filename="../forms/aboutdialog.ui" line="+14"/>
<source>About TORUS</source>
<translation type="unfinished"/>
</message>
<message>
<location line=... |
import ViewHelpers from '../../backend/utils/view-helpers'
const onProd = process.env.NODE_ENV === 'production'
/**
* Returns external dependencies either from local bundle or from CDNs.
* @private
*
* @param {Object} options
* @param {boolean} [options.fromCDN=true] indicates if scripts should be fetched
... |
// tslint:disable:no-console
// In production, we register a service worker to serve assets from local cache.
// This lets the app load faster on subsequent visits in production, and gives
// it offline capabilities. However, it also means that developers (and users)
// will only see deployed updates on the 'N+1' visi... |
import { Component, Input, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'app-collapsible-window',
templateUrl: './collapsible-window-component.html',
encapsulation: ViewEncapsulation.None
})
export class CollapsibleWindowComponent {
@Input() title = 'Window';
@Input() reversed = false;
... |
import { ServerResponse } from "../types";
export enum Actions {
SetLocation = "SetLocation",
SetApartmentFriendly = "SetApartmentFriendly",
SetLoading = "SetLoading",
OnServerResponse = "OnServerResponse",
OnServerError = "OnServerError",
ResetState = "ResetState",
}
interface SetLocationAction {
type:... |
// 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... |
export const container = {
animate: {
transition: {
staggerChildren: 0.1,
},
},
exit: {
transition: {
staggerChildren: 0.1,
},
},
};
export const text_reveal = {
initial: { y: 180 },
animate: { y: 0, opacity: 1, transition: { duration: 1.4 } },
exit: { y: 120, opacity: 0, tran... |
export class Ingredient {
constructor(public name: string, public amount: number) {
}
}
// export class IngredientModel {
// public name: string;
// public amount: number;
// constructor(name: string, amount: number) {
// this.name = name;
// this.amount = amount;
// }
// ... |
import { TooltipPropsWithTitle } from 'antd/lib/tooltip'
import { ChangeEvent } from 'react'
export interface ITooltipExtendedOptions extends TooltipPropsWithTitle {}
export type IValue = string | number | readonly string[] | undefined
export interface IPatternPropsExtension {
/** JSX element inside Ant Design Pat... |
import { RouteRecordRaw } from 'vue-router';
const routes: RouteRecordRaw[] =
[{
path: '/',
component: () => import('../layouts/MainLayout.vue'),
}];
export default routes; |
import { InternalError } from "@/InternalError";
import { Validation } from "rusane";
export class ValidationFailedError extends InternalError {
public error: Validation.ValidationError;
constructor(error: Validation.ValidationError) {
super();
this.error = error;
}
} |
import { Component, OnInit, OnDestroy, Output, Input, ViewChild, EventEmitter } from '@angular/core';
import { Subscription } from 'rxjs';
import { Selector } from '../common/selector';
import { ApiConnection } from '../connect/api-connection';
import { ConnectService } from '../connect/connect.service';
import { Noti... |
import { Parser, Match } from "../src";
describe("Matches", function () {
it("matches several rules altogether", function () {
const p = new Parser();
p.addRule("string");
p.addRule(/r(egex)p/);
p.addRule(function (str) {
const i = str.indexOf("func");
if (i < 0) return [];
return [... |
import { L18n } from "..";
export declare const zhL18n: L18n; |
import mixpanel from 'mixpanel-browser'
import { Config } from '../../config'
import { Profile } from '../profile/models'
import * as Sentry from '@sentry/browser'
import { Reward } from '../reward/models'
import { MiningStatus } from '../machine/models'
import { Machine } from '../machine/models/Machine'
import { Root... |
import { GraphicalObject } from "./GraphicalObject";
import { StaffLine } from "./StaffLine";
import { AbstractTempoExpression } from "../VoiceData/Expressions/AbstractTempoExpression";
import { GraphicalLabel } from "./GraphicalLabel";
export class GraphicalInstantaneousTempoExpression extends GraphicalObject {
p... |
export class User {
id: string;
role: number;
firstName: string;
lastName: string;
room: number;
email: string;
password: string;
warnings: number;
} |
export function StretchIcon(props: React.SVGProps<SVGSVGElement>) {
return (
<svg
viewBox="0 0 13 13"
xmlns="http://www.w3.org/2000/svg"
fillRule="evenodd"
clipRule="evenodd"
strokeLinejoin="round"
strokeMiterlimit={2}
{...props}
>
<path d="M4.871 3.553L9.37 8.0... |
import { Args, Mutation, Query, Resolver, Parent, ResolveField } from '@nestjs/graphql';
import { GraphQLVoid } from 'graphql-scalars';
import { CreateCorporationEinInput } from '../dto/inputs/create-corporation-ein.input';
import { CorporationEinResponse } from '../dto/responses/corporation-ein.response';
import { G... |
/**
* Utility object with keys to functions pertaining to local storage management.
*
* @file defines storage object and its children.
* @since 4.04.21
*/
export const storage = {
getToken: () =>
JSON.parse(window.localStorage.getItem('token') || '{}'),
setToken: (token: string) =>
window.localStorage... |
import React from 'react'
import { ExampleComponent } from 'base-api'
import 'base-api/dist/index.css'
const App = () => {
return <ExampleComponent text="Create React Library Example 😄" />
}
export default App |
import { call, fork, put, select } from 'redux-saga/effects'
import {
createWatcher,
} from '../utils/utilities'
import {
switchUpgradeLoader,
INIT_LEVELS,
AUTO_UPLOAD_SECONDARY,
SET_CLOUD_FOR_LEVEL,
AUTO_UPLOAD_CONTACT,
UPDATE_AVAILABLE_KEEPER_DATA,
setAvailableKeeperData,
updateAvailableKeeperData,
... |
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'playmap';
} |
import React from 'react';
import {createStackNavigator} from '@react-navigation/stack';
import ChatScreen from '~/pages/Chat';
import MarkDataScreen from '~/pages/MarkData';
import ProfileScreen from '~/pages/Profile';
import SearchScreen from '~/pages/Search';
import HomeRoutes from '~/routes/home';
const Stack = ... |
/*
* Copyright 2021 The PartChain Authors. 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... |
import classNames from 'classnames';
import React, { FunctionComponent } from 'react';
interface ModalDialogProps {
title: React.ReactNode;
footer?: React.ReactNode;
bodyClassName?: string;
children?: React.ReactNode;
}
export const ModalDialog: FunctionComponent<ModalDialogProps> = (props) => (
<div>
<... |
import {} from "jest";
import * as sinon from "sinon";
import UploadService from "../../src/services/UploadService";
import Application, {ApplicationModel} from "../../src/models/Application";
import {File} from "multiparty";
import ScanResult, {ScanResultModel} from "../../src/models/ScanResult";
import AntiVirusTier,... |
import { module } from 'angular';
export const VPC_MODULE = 'spinnaker.amazon.vpc';
module(VPC_MODULE, [
require('./vpcTag.directive')
]); |
import React from "react";
import { ScrollView } from "react-native";
import {
Div,
Input,
Icon,
Text,
Select,
Button,
SelectRef,
} from "react-native-magnus";
import ExamplePage from "../utils/ExamplePage";
import ExampleHeader from "../utils/ExampleHeader";
import ExampleSection from "../utils/ExampleS... |
/**
* Returns an AP-formatted date string that corresponds with the supplied
* Date. If an `input` is not passed, it will use the result of `new Date();`.
*
* @param date - The supplied Date
* @returns The converted date as a string
*/
export function apdate(date?: Date): string;
/**
* Returns an AP-formatted m... |
import {Injectable} from '@angular/core';
import {Meeting} from "../../shared/models/Meeting";
import {Situation} from "../../shared/models/Situation";
import {Teacher} from "../../shared/models/Teacher";
import {Subject} from "../../shared/models/Subject";
import {User} from "../../shared/models/User";
import {Student... |
import { Keypair, TransactionInstruction } from '@solana/web3.js';
import {
setAuctionAuthority,
setVaultAuthority,
StringPublicKey,
WalletSigner,
} from 'oyster-common';
import { WalletNotConnectedError } from '@solana/wallet-adapter-base';
// This command sets the authorities on the vault and auction to be t... |
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import './popup.scss';
import App from './App';
import { Provider } from 'react-redux';
import { reducers } from '../state/reducers';
import storeCreatorFactory from 'reduxed-chrome-storage';
import { applyMiddleware, createStore } from 'redux';
imp... |
//
// Copyright (c) Microsoft.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
import util from 'util';
import _ from 'lodash';
import * as common from './common';
import { wrapError } from '../utils';
import { TeamMember } from './teamMember';
import { TeamRe... |
import { window, workspace, TextDocumentChangeEvent, Range, Position, Selection, languages, CompletionItem, CompletionItemKind, TextDocument, CancellationToken, CompletionContext, Disposable } from 'vscode'
import { num2hanzi } from '@wenyan/core'
import { ExtensionModule } from '../module'
import DynamicSnippets from ... |
// NOTE: cuts off at month start and end per default
import * as moment from 'moment';
export const getDateRangeForWeek = (year: number, weekNr: number, month?: number): {
rangeStart: Date,
rangeEnd: Date,
} => {
let rangeStart = moment().day('Monday').year(year).week(weekNr).toDate();
let rangeEnd = moment().... |
import "@material/mwc-button/mwc-button";
import {
css,
CSSResult,
customElement,
html,
LitElement,
property,
internalProperty,
TemplateResult,
} from "lit-element";
import { createCloseHeading } from "../../../../components/ha-dialog";
import "../../../../components/ha-icon-input";
import type { HaSwit... |
<?xml version="1.0" ?><!DOCTYPE TS><TS language="hr" version="2.0">
<defaultcodec>UTF-8</defaultcodec>
<context>
<name>AboutDialog</name>
<message>
<location filename="../forms/aboutdialog.ui" line="+14"/>
<source>About YXlite</source>
<translation>O YXlite-u</translation>
</message>... |
// package: google.ads.googleads.v3.enums
// file: google/ads/googleads/v3/enums/custom_interest_type.proto
import * as jspb from "google-protobuf";
import * as google_api_annotations_pb from "../../../../../google/api/annotations_pb";
export class CustomInterestTypeEnum extends jspb.Message {
serializeBinary(): Ui... |
import * as chai from 'chai';
import 'mocha';
import { FixTypeValidationError } from '../../../errors/FixTypeValidationError';
import { STANDARD_DELIMITER } from '../../../util/util';
import { FixChar } from '../../data-types/fix-char';
import { PossibleResendField } from './possible-resend';
describe('possible-resen... |
import React from 'react';
import classNames from 'classnames';
import { colors } from '../../utils/colors';
export type ProgressBarProps = {
/**
* Value of the progress.
*/
value: number;
/**
* Minimum value of the progress.
*/
min: number;
/**
* Maximum value of the progress bar.
*/
max... |
import { AlexaForBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AlexaForBusinessClient";
import { CreateGatewayGroupRequest, CreateGatewayGroupResponse } from "../models/models_0";
import {
deserializeAws_json1_1CreateGatewayGroupCommand,
serializeAws_json1_1CreateGatewayGroupCommand... |
import { TransformerRegistyItem } from '@grafana/data';
import { reduceTransformRegistryItem } from '../components/TransformersUI/ReduceTransformerEditor';
import { filterFieldsByNameTransformRegistryItem } from '../components/TransformersUI/FilterByNameTransformerEditor';
import { filterFramesByRefIdTransformRegistryI... |
import { existsSync, mkdirSync } from 'fs';
import { CollectionPopulator } from '../../src/populator';
import { defaultCollectionReadingOptions } from '../../src';
const IMPORT_DATA_DIR = __dirname + '/_importdata';
interface ExpectedDocuments {
[key: string]: object[];
}
describe('CollectionPopulator', () => {
... |
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
import { createDS, columnFactory } from '@pebula/ngrid';
import { Person, DynamicClientApi } from '@pebula/apps/docs-app-lib/client-api';
import { Example } from '@pebula/apps/docs-app-lib';
@Component({
selector: 'pbl-dynamic-se... |
import { OrderData } from "./OrderData";
export type OrderMap = {
[key: string]: OrderData
} |
import React from "react";
import { useQuery, gql } from "@apollo/client";
import { CompanyData } from "./types";
export interface Response {
items: CompanyData[];
currentPage: number;
totalPages: number;
count: number;
}
export interface Data {
getCompanies: Response;
}
export interface Vars {
id?: num... |
import { Directive, HostListener, ElementRef, Renderer2, HostBinding } from '@angular/core';
@Directive({
selector: '[highlightMouse]'
})
export class HighlightMouseDirective {
@HostListener('mouseenter') onMouseHover(){
/* this._renderer.setStyle(
this._elementRef.nativeElement,
'background-color... |
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
import { Diagnostic, Project } from "./ts_morph.ts";
export function exitIfDiagnostics(project: Project, diagnostics: Diagnostic[]) {
if (diagnostics.length > 0) {
console.error(project.formatDiagnosticsWithColorAndContext(diagnostics));... |
import {Component, OnInit} from '@angular/core'
import {AuthenticationService} from '../authentication.service'
import {MatSnackBar} from '@angular/material'
import {Router} from '@angular/router'
@Component({
selector: 'wn-register',
templateUrl: './register.component.html',
styleUrls: ['./register.component.cs... |
import { solution1 } from './solution1';
import * as _ from 'lodash';
import { range, result, values } from 'lodash';
import { cachedDataVersionTag } from 'v8';
class App {
/** Entry point of our app */
public static start() {
console.log(solution1());
}
}
App.start(); |
import { ICoreAction } from '../lib';
import CoreElement from './CoreElement';
export default abstract class CoreAction
extends CoreElement
implements ICoreAction
{
abstract register(): void;
} |
import { EmbedType } from "../enums/Embed.ts";
import EmbedField from "../message/MessageEmbed/EmbedField.ts";
import EmbedFooter from "../message/MessageEmbed/EmbedFooter.ts";
import EmbedImage from "../message/MessageEmbed/EmbedImage.ts";
import EmbedProvider from "../message/MessageEmbed/EmbedProvider.ts";
import Em... |
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {Compiler, SystemJsNgModuleLoader} from '@angular/core';
import {global} from '@angular/core/src/util';
impor... |
import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
import { TagWhereUniqueInput } from './tag-where-unique.input';
import { TagCreateWithoutArticlesInput } from './tag-create-without-articles.input';
@InputType()
export class TagCreateOrConnectWithoutArticlesInput {
@Field(() => ... |
// @ts-nocheck
export declare const CREATE_CODE_API = "/signinup/code";
export declare const RESEND_CODE_API = "/signinup/code/resend";
export declare const CONSUME_CODE_API = "/signinup/code/consume";
export declare const DOES_EMAIL_EXIST_API = "/signup/email/exists";
export declare const DOES_PHONE_NUMBER_EXIST_API =... |
import React from 'react';
import { Column } from '../../common/Flexbox';
import { Typography } from '@material-ui/core';
import translate from 'counterpart';
export const IntroductionColumn = () => {
return (
<Column width='100%'>
<Typography variant="body2" color={'initial'}>{translate('landingPage.welco... |
import React from 'react';
import {
DataQualityApiGetRunsRequest,
DataQualityTestRun,
} from 'generated-sources';
import cx from 'classnames';
import { Grid, Typography } from '@mui/material';
import { StylesType } from 'components/DataEntityDetails/QualityTestRunsHistory/QualityTestRunsHistoryStyles';
import Empty... |
import React from "react";
import Container from "@material-ui/core/Container";
import Grid from "@material-ui/core/Grid";
import IconButton from "@material-ui/core/IconButton";
import Typography from "@material-ui/core/Typography";
import MorevertIcon from "@material-ui/icons/MoreVert";
import "../video-gallery/video-... |
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {CommonModule} from '@angular/common';
import {Component, createNgModuleRef, CUSTOM_ELEMENTS_SCHEMA, destroyPl... |
// Copyright IBM Corp. 2018,2020. All Rights Reserved.
// Node module: @loopback/example-todo-list
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
import {inject} from '@loopback/core';
import {juggler} from '@loopback/repository';
const config = {
na... |
import {
AST_NODE_TYPES,
AST_TOKEN_TYPES,
STORAGE_CLASS,
} from '../ast/glsl-ast-node-types';
import {
ArrayExpression,
AssignmentExpression,
BaseNode,
BinaryExpression,
BlockStatement,
CallExpression,
ConditionalExpression,
DataType,
DoWhileStatement,
Expression,
ExpressionStatement,
ForS... |
import { $log, ServerLoader } from "@tsed/common";
import { Server } from "./Server";
async function bootstrap() {
try {
$log.debug("Start server...");
const server = await ServerLoader.bootstrap(Server);
await server.listen();
$log.debug("Server initialized");
} catch (er) {
... |
declare module 'normalize-strings' {
export default function normalize(str: string, customCharmap?: Record<string, string>): string
} |
import React from 'react'
import StickyHeadBar from '@/components/StickyBar/StickyHeadBar'
import { IBoard } from '@cc98/api'
import { navigate } from '@/utils/history'
interface Props {
title: string
boardInfo: IBoard
}
const RecordHead: React.FC<Props> = ({ title, boardInfo }) => (
<StickyHeadBar
title=... |
import { holochatReducer, initialState } from './reducer'
import * as chatActions from './actions'
import { MessageType } from './types/message'
describe('Chat Reducer', () => {
it('Should update the streamAddress in response to CreateStream', () => {
expect(holochatReducer(undefined, chatActions.CreateStream.... |
export = ReactStrap;
export as namespace ReactStrap;
import * as React from "react";
declare namespace ReactStrap {
export function Badge(props: any): React.Component<any, any>
export function Card(props: any): React.Component<any, any>
export function CardBlock(props: any): React.Component<any, any>
... |
/**
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
* @license MIT
*/
import { IDisposable, IMarker, ISelectionPosition } from 'xterm';
import { IEvent } from 'common/EventEmitter';
import { ICoreTerminal, CharData, ITerminalOptions } from 'common/Types';
import { IMouseService, IRenderService } fro... |
import { CommonModule } from '@angular/common';
import { Component, Input, NgModule, OnChanges, OnInit, Type, ViewEncapsulation } from '@angular/core';
import { RouterModule } from '@angular/router';
import { XM_COPY_ICON_OPTIONS, XmCopyIconModule, XmCopyIconOptions } from '@xm-ngx/components/copy';
import {
XM_LIN... |
import {
Modal,
ModalBody,
ModalCloseButton,
ModalContent,
ModalHeader,
ModalOverlay,
useDisclosure,
} from "@chakra-ui/react";
import { DevicePermissionStatus, useDevicePermissionStatus } from "amazon-chime-sdk-component-library-react";
import * as R from "ramda";
import React, { useEffect ... |
$(document).ready(function () {
var vm = new CoinCounter.CoinCounterViewModel();
vm.initialize();
ko.applyBindings(vm);
}); |
import React from 'react'
import { Avatar, AVATAR_VARIANT } from '../../Avatar'
import { Link } from '../../Link'
import { UserType } from '../../../common/User'
interface UserLinkProps {
className?: string
user: UserType
LinkComponent?: any
}
export const UserLink: React.FC<UserLinkProps> = ({
className = '... |
/// <reference path="../../index.d.ts"/>
import { ErrorRequestHandler, Request, Response, NextFunction } from 'express';
import * as httpStatus from 'http-status-codes';
import { ErrorService } from '../errors';
import { helper } from '../../core/helpers';
export const middlewaresApi: Scheme = {
'http-status-not-fou... |
import {
AbsoluteFilePath,
AbsoluteFilePathMap,
AbsoluteFilePathSet,
AnyPath,
PathSet,
RelativePath,
RelativePathMap,
RelativePathSet,
UIDPath,
UIDPathMap,
UIDPathSet,
URLPath,
URLPathMap,
URLPathSet,
createAbsoluteFilePath,
createRelativePath,
createUIDPath,
createURLPath,
} from "@internal/path";
im... |
import { Objects } from '@ephox/boulder';
import { console, Node } from '@ephox/dom-globals';
import { Arr, Cell, Fun, Global, Obj, Option } from '@ephox/katamari';
import { Element } from '@ephox/sugar';
import { AlloyComponent } from '../api/component/ComponentApi';
import * as SystemEvents from '../api/events/Syste... |
import "./reset.css";
import "./base.css"; |
import { NgModule } from '@angular/core';
import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
const routes: Routes = [
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', loadChildren: () => import('./home/home.module').then( m => m.HomePageModule)},
{ path: 'actividad/:id... |
import React from 'react';
import { connect } from 'react-redux';
import { Card } from 'semantic-ui-react';
import { MdTimer } from 'react-icons/md';
import { ICourseData } from '../../models/ICourseData';
import { ILecturesList } from '../../models/ILecturesList';
import { CircleProgress } from 'react-gradient-progres... |
// Copyright 2018 The Outline Authors
//
// 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 agre... |
export interface IProps {
isToolBarOpen: boolean;
onSaveProject?: () => void;
} |
import React from 'react'
import { router } from 'kea-router'
import api from 'lib/api'
import { autoCaptureEventToDescription } from 'lib/utils'
import { Link } from 'lib/components/Link'
import { ActionStepType, ActionStepUrlMatching, ActionType, ElementType, EventType, TeamType } from '~/types'
import { CLICK_TARGET... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the Apache 2.0 License.
import { Hidden, Controller, Get, Route } from "@tsoa/runtime";
import { MS_APP_ID, MS_APP_ID_URI } from "../authentication";
const HEADER_HTML = `
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8... |
import {Component, EventEmitter, Input, Output} from '@angular/core';
import {FormBuilder, Validators} from "@angular/forms";
import {environment} from '../../../environments/environment';
import {CategoryFormData} from "../../shared/models/category-form-data.model";
import {Category} from "../../shared/models/categor... |
import Routable from '../'
import { createLocalVue, mount, Wrapper } from '@vue/test-utils'
import Router from 'vue-router'
import Vue, { VNode } from 'vue'
describe('routable.ts', () => {
let mountFunction: (options?: object) => Wrapper<Vue>
let router: Router
let localVue: typeof Vue
beforeEach(() => {
... |
import { Physics, Scene } from "phaser";
import { GetOverworldPlayerAnims, GetPlayerAnims } from "~/anims/PlayerAnims";
import { Condition, PlayerStatus, Speech, WRGame } from "~/game/game";
import { AddWASDKeysToScene, CreateAnimationSet, RandomCoord } from "~/game/gamelogic";
import {
WindDirection,
GenerateBuild... |
/// Generated by expo-google-fonts/generator
/// Do not edit by hand unless you know what you are doing
///
export { useFonts } from './useFonts';
export const __metdata__: Any;
export const Antic_400Regular: number; |
import express, { Router } from "express";
import { createEventSchema } from "../../shared/utils/Validation";
import EventController from "../controllers/events.controller";
const router = express.Router();
router.get("/", EventController.findAll);
router.post("/", createEventSchema, EventController.create);
router.... |
import * as iam from '@aws-cdk/aws-iam';
import * as secretsmanager from '@aws-cdk/aws-secretsmanager';
import { Construct } from 'constructs';
import { IEngine } from './engine';
import { EngineVersion } from './engine-version';
import { IParameterGroup, ParameterGroup } from './parameter-group';
/**
* The extra opt... |
<?xml version="1.0" ?><!DOCTYPE TS><TS language="eo" version="2.0">
<defaultcodec>UTF-8</defaultcodec>
<context>
<name>AboutDialog</name>
<message>
<location filename="../forms/aboutdialog.ui" line="+14"/>
<source>About Avana</source>
<translation>Pri Avana</translation>
</message>
... |
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { NearByVehiclesComponent } from './near-by-vehicles.component';
describe('NearByVehiclesComponent', () => {
let component: NearByVehiclesComponent;
let fixture: ComponentFixture<NearByVehiclesComponent>;
beforeEach(async () => {
awa... |
export { default } from './SearchResults'
export * from './SearchResults' |
import * as React from "react";
import { render } from "reakit-test-utils";
import { unstable_FormRemoveButton as FormRemoveButton } from "../FormRemoveButton";
test("render", () => {
const { baseElement } = render(
<FormRemoveButton
baseId="base"
name="a"
index={1}
values={{ a: ["a", "b"... |
import React from 'react'
import { RundownPlaylist } from '../../../../lib/collections/RundownPlaylists'
import { Studio } from '../../../../lib/collections/Studios'
import { ISourceLayerExtended } from '../../../../lib/Rundown'
import { IContextMenuContext } from '../../RundownView'
import { IOutputLayerUi, PartUi, Pi... |
import React, { ReactElement, ReactNode } from 'react'
import { Logo } from '../Logo/Logo'
import { Box } from '../Box/Box'
import { Text } from '../Text/Text'
import { Button } from '../Button/Button'
import { Hidden } from '../Hidden/Hidden'
import { UserMenu } from './UserMenu/UserMenu'
import * as styles from './H... |
import { expect } from 'chai';
import { TestHelpers } from '../test-helpers';
import { VirtualLineInService } from '../../src/services/virtual-line-in.service';
describe('SystemPropertiesService', () => {
describe('Event parsing', () => {
it('works', (done) => {
process.env.SONOS_DISABLE_EVENTS = 'true'
... |
import curryN from '../function/curryN';
import objectKeys from './keys';
import {ObjBase, ObjBaseBy, Prop} from '../typings/types';
interface KeyBy {
<O, KT extends string>(fn: ObjBaseBy<O, KT>, obj: O): Record<KT, O[keyof O]>;
<K extends Prop, V, KT extends string>(fn: ObjBase<K, V, KT>): <O extends Record<K, V... |
/**
*
*
* OpenAPI spec version: 20190111
*
*
* NOTE: This class is auto generated by OracleSDKGenerator.
* Do not edit the class manually.
*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as sho... |
#!/usr/bin/env node
import yargs from "yargs";
import chalk from "chalk";
import { NugetClient } from "./nuget-client";
import { QueryResponse, QueryResponseDataItem } from "./interfaces";
interface InstallOptions {
packageId: string;
version?: string;
output: string
}
interface SearchOptions {
word: ... |
export const SINGLETON_FACTORY_ABI = [
{
inputs: [
{ internalType: "bytes", name: "_initCode", type: "bytes" },
{ internalType: "bytes32", name: "_salt", type: "bytes32" },
],
name: "deploy",
outputs: [{ internalType: "address payable", name: "createdContract", type: "address" }],
stat... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.