text stringlengths 10 953k |
|---|
import classnames from 'classnames';
import every from 'lodash/every';
import isNull from 'lodash/isNull';
import isUndefined from 'lodash/isUndefined';
import React, { useContext, useRef, useState } from 'react';
import { FaSignInAlt } from 'react-icons/fa';
import { IoIosArrowBack } from 'react-icons/io';
import { us... |
import type { NextApiRequest, NextApiResponse } from "next";
import prisma from "@lib/prisma";
import { getSession } from "@lib/auth";
import { pick } from "lodash";
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
const session = await getSession({ req: req });
if (!session) {
... |
import * as chai from 'chai';
import * as dirtyChai from 'dirty-chai';
import 'mocha';
import { RestTester } from './util/rest-tester';
import { simpleServer } from './util/simple-server';
import { Request } from 'express';
import { Restgoose, RestgooseModel, prop, all, create, one, removeAll, rest, getModel } from '.... |
import { User } from '../user/user.entity';
import { Target } from '../../trivia/target/target.entity';
export declare class Role {
id: number;
name: string;
user: User[];
target: Target[];
} |
import {DeconflicterVisitorOptions} from "../deconflicter-visitor-options";
import {TS} from "../../../../../../type/ts";
import {preserveMeta} from "../../../util/clone-node-with-meta";
/**
* Deconflicts the given PropertyAssignment.
*/
export function deconflictPropertyAssignment(options: DeconflicterVisitorOption... |
import React from 'react';
import { render, fireEvent } from '@testing-library/react';
import { ActionBanner } from '../ActionBanner';
describe('ActionBanner', () => {
const onCloseSpy = jest.fn();
it('should render', () => {
const { container } = render(
<ActionBanner show={true} variant={... |
/**
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.2
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi... |
import Box from "@material-ui/core/Box";
import FormControlLabel from "@material-ui/core/FormControlLabel";
import Radio from "@material-ui/core/Radio";
import RadioGroup from "@material-ui/core/RadioGroup";
import { createStyles, makeStyles, Theme } from "@material-ui/core/styles";
import { CategoryType } from "domain... |
export * from './Domain'; |
/**
* 判断是否文章页
* @param {object} route - Vue 路由
* @param {string} lang - 语言缩写, e.g. en, zh-CN
*/
import { RouteRecordRaw } from 'vue-router'
const isArticle = (route: RouteRecordRaw):boolean => {
if (!route.path || typeof route.path !== 'string') {
return false
}
let routeName:string = 'article-... |
import { InfoButtonService } from './info-button.service';
import { TestBed } from '@angular/core/testing';
import { HttpClientModule, HttpClient } from '@angular/common/http';
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { of } from 'rxjs';
describe('InfoButtonService', () => {
let... |
import {Injectable} from "@angular/core";
import {HttpUtil} from "../util/http.util";
import {TGroup} from "./t-group";
@Injectable()
export class TGroupService{
private baseUrl = "/fcat-user/v1/tGroup";
constructor(private httpUtil: HttpUtil){
}
getList(currentPage:number, pageSize:number) {
let param =... |
import * as React from 'react';
import { Col, Form, OverlayTrigger, Tooltip } from 'react-bootstrap';
import { QuestionCircle } from 'react-bootstrap-icons';
import { OverlayInjectedProps } from 'react-bootstrap/esm/Overlay';
import {
ALL_MIX_BITRATES,
DEFAULT_MIX_BITRATE,
DEFAULT_MODEL,
DEFAULT_SOFTMASK_ALPHA,... |
/*
* This file was autogenerated. Don't edit this file!
*
* To update, execute "yarn start" inside "import-mistica-icons"
*/
import * as React from 'react';
import {useTheme} from '../../hooks';
import {useIsInverseVariant} from '../../theme-variant-context';
import type {IconProps} from '../../utils/types';
con... |
// Type definitions for FabricJS
// Project: http://fabricjs.com/
// Definitions by: Oliver Klemencic <https://github.com/oklemencic/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module fabric {
function createCanvasForNode(width: number, height: number): ICanvas;
function getCSSRul... |
import { Node, TreeNode } from './Node'
import { Stack } from '../Stack/ObjectStack'
import { Queue } from '../Queue/Queue'
import { BST } from './types'
import { defaultCompare } from '../tools'
import { Compare, CompareFunction } from '../typings'
export class BinarySearchTree<T> implements BST<T> {
private root: ... |
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
import { HttpErrorResponse, HttpHeaders, HttpResponse } from '@angular/common/http';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
import { LocalStorageService } from 'ngx-webstorage';
import { Pr... |
// *** WARNING: this file was generated by the Pulumi SDK Generator. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
export const AdvancedFilterOperatorType = {
NumberIn: "NumberIn",
NumberNotIn: "NumberNotIn",
NumberLessThan: "NumberLessThan",
NumberGreaterThan: ... |
import { BinanceConnector } from "../../binance/binance-connector"
import { Player } from "../utilities/player"
import { PortfolioProvider } from "../utilities/portfolio-provider"
export class JumpStarter {
private binanceConnector: BinanceConnector
private historicData: any[] = []
private portfolioProvi... |
import { FileFsRef, Files } from '@vercel/build-utils';
import { NowHeader, NowRewrite, Route, Source } from '@vercel/routing-utils';
import { Sema } from 'async-sema';
import crc32 from 'buffer-crc32';
import fs from 'fs-extra';
import path from 'path';
import resolveFrom from 'resolve-from';
import semver from 'semve... |
export * from './Coder'
export * from './Error'
export * from './util'
import JsonCoder from './JsonCoder'
export default JsonCoder |
import { CharacterExpCurveData } from "./DataminedModules/character/characterExpCurve";
import { WeaponExpCurveData } from "./DataminedModules/weapon/weaponExpCurve";
import { WeaponData } from './main'
export { CharacterExpCurveData, WeaponExpCurveData, WeaponData }
export const tagColor = {
"FFD780FF": "strong",
... |
/**
* @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 { Architect, BuilderRun } from '@angular-devkit/architect';
import fetch from 'node-fetch'; // tslint:disable... |
import { TestBed } from '@angular/core/testing';
import {
Subject
} from 'rxjs';
import {
Config,
HelperService,
TokenProvider
} from 'ngx-launcher';
import { FABRIC8_FORGE_API_URL } from '../../../shared/runtime-console/fabric8-ui-forge-api';
import { NewForgeConfig } from '../shared/new-forge.config';
impo... |
namespace N {}
namespace M.N.O {}
module M {}
module "m" {} |
import { Capacitor } from '@capacitor/core'
import { XRPlugin } from 'webxr-native'
import React, { useEffect, useRef, useState } from 'react'
import {
CameraHelper,
Color,
Group,
OrthographicCamera,
PerspectiveCamera,
Quaternion,
Scene,
sRGBEncoding,
Vector3,
WebGLRenderer
} from 'three'
import Vid... |
import type { UpdateResolver } from '@urql/exchange-graphcache'
import { useMutation } from '@urql/vue'
import gql from 'graphql-tag'
import type { UpdateWorkspaceInput } from '../__generated__/types'
import type { DeepMaybeRef } from '@vueuse/core'
import type { Ref } from 'vue'
const UPDATE_WORKSPACE = gql`
mutati... |
import { VisualEffect } from "./VisualEffect";
import { Disposable } from "../core/Disposable";
import { VisualPass } from "./VisualPass";
import { ShaderParameters } from "./ShaderParameters";
import { ShaderFloat } from "./floats/ShaderFloat";
import { Texture } from "../resources/Texture";
import { VisualTechnique }... |
/*!
* V4Fire Client Core
* https://github.com/V4Fire/Client
*
* Released under the MIT license
* https://github.com/V4Fire/Client/blob/master/LICENSE
*/
/**
* [[include:dummies/b-dummy/README.md]]
* @packageDocumentation
*/
import 'models/demo/pagination';
import { derive } from 'core/functools/trait';
imp... |
import { Message } from "../components/Message";
import { useVerifyEmailMutation } from "../../../api";
import React from "react";
import { useLocation } from "react-router-dom";
import { Heading, Spinner, VStack } from "@chakra-ui/react";
export const Verify = () => {
const [verifyEmail, { isLoading, isSuccess, err... |
import {BaseElement, Animation} from "./smart.element"
/**
Layout splits your content into resizable sections.
*/
export interface Layout extends BaseElement {
/* Get a member by its name */
[name: string]: any;
/**
* Sets or gets the animation mode. Animation is disabled when the property is set to 'none'... |
import {KeyMap} from './KeyMap.js';
import {Segment} from './Segment.js';
export class SegmentIDs {
/**
* 0 = default - reserved for core string (does not need to be present in the core string)
* 1 = OOB vendors disclosed
* 2 = OOB vendors allowed
* 3 = PublisherTC
*/
public static readonly ID_TO_K... |
import { Web3Wrapper } from '@0x/web3-wrapper';
import { ProviderType } from "../../domain/ProviderType";
export class ProviderChangedEvent {
public providerType: ProviderType;
public web3: Web3Wrapper| null;
constructor(providerType: ProviderType, web3: Web3Wrapper| null) {
this.providerType = providerType... |
import styled from 'styled-components'
import Flex from '../../components/Flex'
export const Container = styled(Flex)`
height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
padding-bottom: 300px;
` |
export interface ErrorMessageInterface {
status: string;
message: any;
} |
import { MigrationInterface, QueryRunner, Table } from 'typeorm';
export class CreateSurveys1614257369470 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.createTable(
new Table({
name: 'surveys',
columns: [
{
... |
export * from './person/PersonQuery'
export * from './person/types'
export * from './IdentityProviderQuery'
export * from './ApiKeyByTokenQuery'
export * from './ProjectByIdQuery'
export * from './ProjectBySlugQuery'
export * from './ProjectRolesByIdentityQuery'
export * from './ProjectsByIdentityQuery'
export * from '... |
interface TitleProps {
statusCode: number;
}
export function Title({ statusCode }: TitleProps): JSX.Element {
return (
<div className="font-anton mb-4 text-center lg:text-left">
<h1 className="text-7xl lg:text-9xl">
<span className="bg-clip-text text-transparent bg-gradient-to-br from-purple-400 ... |
import i18n from "i18next";
import ICU from "i18next-icu";
import Backend from "i18next-xhr-backend";
import LanguageDetector from "i18next-browser-languagedetector";
import { reactI18nextModule } from "react-i18next";
import en from "i18next-icu/locale-data/en";
i18n
.use(
new ICU({
localeData: en
})... |
export * from './useAppDispatch';
export * from './useAppSelector';
export * from './useSwitchElement'; |
import * as React from 'react';
import { Provider as ReduxProvider } from 'react-redux';
import { BrowserRouter } from 'react-router-dom';
import getStore from './redux/store';
import Innhold from './innhold';
import DataProvider from './provider/data-provider';
import { erLocalhost, erFullMock, erDemo } from './mock/u... |
import { CommonModule } from '@angular/common'
import { ModuleWithProviders, NgModule } from '@angular/core'
import { TreeLoadingComponent } from './components/tree-loading/tree-loading.component'
import { TreeNodeChildrenComponent } from './components/tree-node-children/tree-node-children.component'
import { TreeNode... |
import { ApiModelProperty } from '@nestjs/swagger';
import { IsEmail, IsEmpty, IsOptional } from 'class-validator';
export class UserUpdateDto {
@ApiModelProperty({
required: false,
type: String,
example: 'example.com/image.jpg',
})
readonly icon: string;
@IsEmpty() updatedAt: ... |
import { globAsync } from '../glob-async';
import buildStatic from './static';
import logIf from '../log-if';
export default async (silent = false) => {
logIf(!silent, 'Copying static files...');
const sources = await globAsync('src/assets/**/*');
logIf(!silent, 'Collected files');
for (const src of s... |
/*
* 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, { useCallback, useContext, useReducer, Reducer } from 'react';
... |
import { Injectable, Module } from "@nestjs/common";
import { Test } from "@nestjs/testing";
import { Job, Queue } from "bullmq";
import { BullQueueInject, BullWorker, BullWorkerProcess } from "../bull.decorator";
import { BullModule } from "../bull.module";
import { createQueueEvents } from "../bull.utils";
const que... |
import * as React from 'react'
import {Platform, StyleSheet, View} from 'react-native'
import * as c from '@frogpond/colors'
import Icon from 'react-native-vector-icons/Ionicons'
const arrowStyles = StyleSheet.create({
wrapper: {
marginLeft: 10,
},
icon: {
color: c.iosDisabledText,
fontSize: 20,
},
})
expor... |
import { Injectable } from '@angular/core'
import * as ver from 'semver'
import {
DefaultAppVersion,
DefaultNotificationRefreshTime,
DefaultNotificationType
} from '../../../../assets/data/defaultConfig'
import { ConfigKeys } from '../../../shared/enums/config'
import {
ConfigEventType,
NotificationEventType... |
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormControl, Validators, FormBuilder } from '@angular/forms';
import { DataService } from '../../services/data.service';
import { Account, Transaction } from '../../services/response';
// provide associated components
@Component({
selector: 'app-T... |
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-user-profile-menu',
templateUrl: './user-profile-menu.component.html',
styleUrls: ['./user-profile-menu.component.css']
})
export class UserProfileMenuComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
} |
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import Game from './components/Game';
import './index.css';
import registerServiceWorker from './registerServiceWorker';
ReactDOM.render(
<Game />,
document.getElementById('root') as HTMLElement
);
registerServiceWorker(); |
import { Component } from '@angular/core';
import { AppService } from './app.service';
import { GroupResource } from './group-resource';
import { OAuthService } from './oauth.service';
import { UserService } from './user.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls:... |
// published a patched version that works on native
// @ts-ignore
const { default: ow } = require('@tamagui/ow/dev-only')
let Config: any
let Tokens: any
let FontRequired: any
let FontOptional: any
export const validateConfig = (conf: any) => {
if (!conf) {
console.warn('no conf?')
return
}
try {
ow... |
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'ex-disabled',
templateUrl: './disabled.component.html',
styleUrls: ['./disabled.component.scss']
})
export class ExDisabledComponent implements OnInit {
model = 3;
constructor() {}
ngOnInit() {}
} |
import { context, utils } from '@ad-engine/core';
import { InstantConfigResponse } from './instant-config.models';
const logGroup = 'instant-config-loader';
class InstantConfigLoader {
private configPromise: Promise<InstantConfigResponse> = null;
async getConfig(): Promise<InstantConfigResponse> {
if (!this.conf... |
import { OrderModule } from './order.module';
describe('BlankPageModule', () => {
let orderModule: OrderModule;
beforeEach(() => {
orderModule = new OrderModule();
});
it('should create an instance', () => {
expect(orderModule).toBeTruthy();
});
}); |
<TS language="fr_FR" version="2.1">
<context>
<name>AddressBookPage</name>
<message>
<source>Right-click to edit address or label</source>
<translation>Double cliquez afin de modifier l'adresse ou l'étiquette</translation>
</message>
<message>
<source>Create a new address</source... |
import { PhotosService } from './../../services/photos.service';
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { NgxSpinnerService } from 'ngx-spinner';
@Component({
selector: 'app-photos',
templateUrl: './photos.component.html',
styleUrls: ['./photos... |
import React from "react";
import { View } from "react-native";
import Icon, { SolidIcons } from "azir-icon";
const renderFlashMessageIcon = (icon: any, style = {}, customProps = {}) => {
switch (icon) {
case "success":
return (
<View style={style}>
<Icon color="#fff" icon={SolidIcons.che... |
import Name from "../../../dist/string/name";
it("enable console log", () => { spyOn(console, 'log').and.callThrough();});
describe('custom', ()=>{
class Test {
}
it(`true`, () => {
expect(Name(new Test)).toBe('Test');
});
})
describe('native Object', ()=>{
it(`true`, () => {
... |
import createApiHandler, {
StrapiApiHandler,
StrapiHandler,
} from '../utils/create-api-handler'
import isAllowedMethod from '../utils/is-allowed-method'
import { StrapiApiError } from '../utils/errors'
import signup from './handlers/signup'
export type SignupBody = {
username: String
email: string
password:... |
export * from "./contexts";
export * from "./options";
export * from "./skin";
export * from "./cloudProxy"; |
import firebase from 'firebase/compat/app';
import { Observable, pipe, UnaryFunction } from 'rxjs';
import { map } from 'rxjs/operators';
/**
* Operator to map firebase.User to firebase.UserInfo.
*
* Sample of use:
*
* ```ts
* import {cfaSignIn, mapUserToUserInfo} from 'capacitor-firebase-auth';
* import {UserI... |
import { QParam, QParamJoiners } from '../../../store/src/q-param';
import { PaginatedAction } from '../../../store/src/types/pagination.types';
import { cfEntityFactory } from '../cf-entity-factory';
import { appEventEntityType } from '../cf-entity-types';
import { CFStartAction } from './cf-action.types';
import { Ht... |
/*
* 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 { EuiBadge, EuiText } from '@elastic/eui';... |
import {
Button,
Dialog,
DialogActions,
DialogActionsProps,
DialogContent,
DialogProps,
DialogTitle,
Grid,
styled,
} from '@mui/material';
import clsx from 'clsx';
import React from 'react';
import { Loading } from './loading';
const dialogClasses = {
title: 'confirmation-dialogue-info-value',
ac... |
// External
// eslint-disable-next-line no-unused-vars
import React, { ChangeEvent } from 'react';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faTimes } from '@fortawesome/free-solid-svg-icons';
import countries from '../../components/countries';
import ReactMarkdown from 'react-markdown... |
import React from "react";
import Shorties from "./pages/Shorties";
import styled from "styled-components/macro";
import GlobalStyle from "./GlobalStyle";
import { I18nProvider } from "./contexts/i18n";
import AppHeader from "./components/AppHeader";
const Container = styled.div`
max-width: 1000px;
width: 80%;
m... |
/**
* @File : Component.tsx
* @Author : dtysky (dtysky@outlook.com)
* @Date : 2018-4-10 11:58:09
* @Link: dtysky.moe
*/
import * as React from 'react';
import * as cx from 'classnames';
import {IControlOptions} from './types';
import Tree from './Tree';
import './base.scss';
export default class Component ex... |
import {reducerManager, createReducerManager} from "./reducerManager";
import {runSaga, setRunSaga} from "./sagaManager";
import { useRedux } from "./useRedux";
import {useReduxReducer, useReduxReducerLocal} from "./useReduxReducer";
import {useSaga, useSagaSimple} from "./useSaga";
import { useStateRef } from "./useSt... |
import { TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { AppComponent } from './app.component';
describe('AppComponent', () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule],
... |
import { createDebug, Debugger } from '@umijs/utils';
abstract class Common {
public debug: Debugger;
protected namespace: string;
protected profilers: object;
protected formatTiming(timing: number) {
return timing < 60 * 1000
? `${Math.round(timing / 10) / 100}s`
: `${Math.round(timing / 600) ... |
import { WorkflowStepBuilder as Class } from '../../src/surfaces/workflow-step';
import { SlackWorkflowStepDto as DtoClass } from '../../src/lib';
import { params } from './mocks/workflow-step.mock';
import * as methods from '../methods';
import { testCompositeBuilderClass } from '../test-composite-builder-class';
con... |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... |
import { FamilyMember } from './family-member';
describe('FamilyMember', () => {
it('should create an instance', () => {
expect(new FamilyMember()).toBeTruthy();
});
}); |
export const USER_NOT_FOUND = 'USER_NOT_FOUND';
export const INVALID_CREDENTIALS = 'INVALID_CREDENTIALS';
export const EMAIL_EXISTS = 'EMAIL_EXISTS';
export const EMAIL_NOT_EXISTS = 'EMAIL_NOT_EXISTS';
export const EMAIL_DONT_MATCH = 'EMAIL_DONT_MATCH';
export const BOARD_NOT_FOUND = 'BOARD_NOT_FOUND';
export const B... |
import { restore as execute } from './execute';
import { channelRestoreDescription as description } from './description';
export {
description,
execute,
}; |
import * as React from "react";
import { CarbonIconProps } from "../../../";
declare const QOperation24: React.ForwardRefExoticComponent<
CarbonIconProps & React.RefAttributes<SVGSVGElement>
>;
export default QOperation24; |
// Modules
import path from 'path';
import { Commander, Command } from './command/index';
// Import Components
import runner from '../Runner/runner';
import compile from '../Compiler/index';
// TODO: add flag to compile to wasm instead of wat
const resolvePath = (file: string) => path.join(process.cwd(), file);
const c... |
import { Component, OnInit, OnChanges } from '@angular/core';
import { ImageService } from '../image.service';
@Component({
selector: 'app-image-gallery',
templateUrl: './image-gallery.component.html',
styleUrls: ['./image-gallery.component.css']
})
export class ImageGalleryComponent implements OnInit, OnChanges... |
import { EconItem } from 'steam-tradeoffer-manager';
/**
* Checks if an item has a specific description
* @param description - Description to search for
*/
export = function(description: string): boolean {
// @ts-ignore
const self = this as EconItem;
if (!Array.isArray(self.descriptions)) {
ret... |
import * as React from 'react'
import ComponentExample from 'docs/src/components/ComponentDoc/ComponentExample'
import ExampleSection from 'docs/src/components/ComponentDoc/ExampleSection'
const Content = () => (
<ExampleSection title="Content">
<ComponentExample
title="Header"
description="List item... |
import ResourceUserControler from './ResourceUserController';
export {
// eslint-disable-next-line import/prefer-default-export
ResourceUserControler,
}; |
import {Router} from '@angular/router';
import {Component, Input, OnInit} from '@angular/core';
import {Csar} from '../../model/csar';
import {RouteHandler} from '../../services/route.service';
import {ClientsTransformationsService} from '../../services/transformations.service';
import {ClientCsarsService} from '../../... |
export class UnexpectedError extends Error {
constructor() {
super();
this.message =
'Unexpected error. Please check your internet and try again.';
this.name = 'UnexpectedError';
}
} |
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import { input as inputs, output as outputs } from "../types";
import * as utilities from "../utilities";
... |
/// <reference types="node" />
import Common from '@ethereumjs/common';
import { AccessList } from '@ethereumjs/tx';
import { Debugger } from 'debug';
import { Account, Address } from 'ethereumjs-util';
import Cache from '@ethereumjs/vm/dist/state/cache';
import { DefaultStateManagerOpts } from '@ethereumjs/vm/dist/sta... |
import { Card } from '../../../interfaces'
import Set from '../Plasma Freeze'
const card: Card = {
name: {
en: "Tympole",
fr: "Tritonde",
es: "Tympole",
it: "Tympole",
pt: "Tympole",
de: "Schallquap"
},
illustrator: "MAHOU",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
535,
],
hp: ... |
import NetInfo from '@react-native-community/netinfo'
import { action, observable } from 'mobx'
import { Platform } from 'react-native'
import { ILanguageData, InputsModel } from 'src/models/InputsModel'
const checkConnectivity = () => {
// For Android devices
if (Platform.OS === 'android') {
return NetInfo.... |
import React, { Suspense } from "react";
import HeroButtons from "./HeroButtons";
import BrowserOnly from "@docusaurus/BrowserOnly";
const LazyThreeJSAnimationShader = React.lazy(() => import("../shape/ThreeJSAnimationShader"));
function HeroHome({}) {
const fallback = <canvas style={{
height: "800px",... |
// GENERATE BY ./scripts/generate.ts
// DON NOT EDIT IT MANUALLY
import * as React from 'react'
import EnvironmentFilledSvg from 'infra-design-svgs/lib/asn/EnvironmentFilled';
import AntdIcon, { AntdIconProps } from '../components/AntdIcon';
const EnvironmentFilled = (
props: AntdIconProps,
ref: React.MutableRefObj... |
/*
* 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 {
ChromeBreadcrumb,
CoreSetup,
Plugin,
PluginInitializerContext... |
// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
export declare class BreadcrumbItem {
$props: {
/**
* add navigation
* @default ''
* @type string
*/
hre... |
export * from './step-config';
export * from './step-host.component'; |
import { ISuperfluidHelper } from './Interface';
import { ethers, Contract, BigNumber, Web3Provider, Signer } from '../utils';
import { XSuperTokenAbi } from './XSuperTokenAbi';
import { AnyMxRecord } from 'dns';
const SuperfluidSDK = require('@superfluid-finance/js-sdk');
const XSuperTokenContract_Ropsten = '0x19a375a... |
import { Component, OnInit, OnDestroy } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { Title } from '@angular/platform-browser';
import { Router } from '@angular/router';
import { environment } from '../../../../en... |
import {storiesOf} from "@storybook/angular";
import {IonicModule} from "@ionic/angular";
import {GridComponent} from "./grid.component";
import {GridRowComponent} from "./row/row.component";
import {GridColumnComponent} from "./column/column.component";
storiesOf('smart-grid', module)
.add('basic', () => ({
... |
export interface TotalTxsPayload {
address: string
} |
import React from 'react';
import { OptionButton } from '@teambit/ui.input.option-button';
import { Tooltip } from '@teambit/ui.tooltip';
import { usePreviewQueryParams } from '@teambit/ui.hooks.use-composition';
const PARAM_NAME = 'highlighter';
export function HighlighterWidget() {
const [active, setActive] = use... |
<?xml version="1.0" ?><!DOCTYPE TS><TS language="sah" 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="+... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.