text
stringlengths
10
953k
import { IconButton, Menu, MenuItem } from '@material-ui/core' import MoreVertIcon from '@material-ui/icons/MoreVert' import React from 'react' import { createStyles, makeStyles, Theme } from '@material-ui/core/styles' import { useTranslation } from 'react-i18next' const useStyles = makeStyles((theme: Theme) => cre...
import { Component, OnInit, ContentChild, TemplateRef, Input, EventEmitter, Inject, Output } from '@angular/core'; import { coerceCssPixelValue } from '@angular/cdk/coercion'; import { GanttUpper, GANTT_UPPER_TOKEN } from '../gantt-upper'; @Component({ selector: 'ngx-gantt-column', template: '' }) export class ...
export class SignInData { private login: string; private password: string; constructor(login: string, password: string) { this.login = login; this.password = password; } getLogin(): string { return this.login; } getPassword(): string { return this.password;...
<?xml version="1.0" ?><!DOCTYPE TS><TS language="et" version="2.0"> <defaultcodec>UTF-8</defaultcodec> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About YoCoin</source> <translation>YoCoinist</translation> </message> ...
/* tslint:disable */ /* eslint-disable */ import { ReaderFragment } from "relay-runtime"; import { FragmentRefs } from "relay-runtime"; export type ArtworkAggregation = "ARTIST" | "ARTIST_NATIONALITY" | "ATTRIBUTION_CLASS" | "COLOR" | "DIMENSION_RANGE" | "FOLLOWED_ARTISTS" | "GALLERY" | "INSTITUTION" | "LOCATION_CITY"...
import { Component } from '@angular/core'; import { TestBed, fakeAsync, tick } from '@angular/core/testing'; import { Router } from '@angular/router'; import { RouterTestingModule } from '@angular/router/testing'; import { TranslateModule } from '@ngx-translate/core'; import { of, throwError } from 'rxjs'; import { any...
import { getBackendSrv } from '@grafana/runtime'; import { dateTime } from '@grafana/data'; import { LdapUser, LdapConnectionInfo, UserSession, SyncInfo, User } from 'app/types'; export interface ServerStat { name: string; value: number; } export const getServerStats = async (): Promise<ServerStat[]> => { try {...
export enum ReceivedCommand { UpdateCodeBlocks = 'scriptingListener.updateCodeBlocks', } export enum SendedCommand { EnableLogging = 'enableLogging', DisableLogging = 'disableLogging', Refresh = 'refresh', Clean = 'clean', } export interface MessageData<T> { command: `scriptingListener.${strin...
import {Enum} from "@bokehjs/core/kinds" import * as p from "@bokehjs/core/properties" import {div} from "@bokehjs/core/dom" import {Widget, WidgetView} from "@bokehjs/models/widgets/widget" function press(btn_list: HTMLButtonElement[]): void { btn_list.forEach((btn) => btn.style.borderStyle = 'inset') } function ...
export interface ITableSettings { padding?: number; header?: { [key: string]: string; }; } export declare function charRepeater(x: number, char?: string): string; /** * * @returns {string} */ export declare function buildStartLine(fields: any, settings: ITableSettings): string; /** * * @param f...
import React from 'react' import { CHROME_EXTENSION_URL } from '../constants' interface IFooter { clearLocalStorage: () => void } export const Footer: React.FC<IFooter> = ({ clearLocalStorage }) => { return ( <> <hr className="border-indigo-200" /> <footer> <div className="flex"> ...
import React, {ChangeEvent, FC, useEffect, useState} from 'react'; import {Link} from "react-router-dom"; import {useDispatch, useSelector} from "react-redux"; import { faChevronDown, faChevronUp, faMinusSquare, faShoppingBag, faShoppingCart } from "@fortawesome/free-solid-svg-icons"; import {FontAw...
import { CreateUserDto } from './dto/create-user.dto'; import { Injectable } from '@nestjs/common'; import { User } from './entities/user.entity'; @Injectable() export class UsersService { private users: User[] = [ { id: 1, name: 'guhkun' }, { id: 2,...
import { InvalidParameterException } from "./InvalidParameterException"; export type ListOrganizationsExceptionsUnion = InvalidParameterException;
import { Component, OnInit, OnDestroy, AfterViewInit, ViewChild, ElementRef } from '@angular/core'; import { debounceTime, filter, map, takeUntil } from 'rxjs/operators'; import { SessionService } from 'src/app/core/session/session.service'; import { Listener } from './listener'; import { Terminal } from 'xterm'; impor...
export interface AlipayHttpOptions { url?: string; method?: string; headers?: any; data?: any; timeout?: number; dataType?: string; } export interface AlipayHttpResponse<T = any> { data: T; status: number; statusText: string; headers: any; config?: any; } export declare class...
import { useContext } from "react"; import { ChallengeContext } from "../contexts/ChallengesContext"; import styles from "../styles/components/Profile.module.css"; export function Profile() { const { level } = useContext(ChallengeContext) return ( <div className={styles.profileContainer}> <img src="http...
<?xml version="1.0" ?><!DOCTYPE TS><TS language="fi" version="2.1"> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About BlakeStar</source> <translation>Tietoa BlakeStarista</translation> </message> <message> ...
import Vue, { VNode } from 'vue' declare global { namespace JSX { // tslint:disable no-empty-interface interface Element extends VNode {} // tslint:disable no-empty-interface interface ElementClass extends Vue {} interface IntrinsicElements {} } }
import { FeatureRunner, Store } from '../lib/runner' import { regexMatcher } from '../lib/regexMatcher' import * as chai from 'chai' import { expect } from 'chai' import * as jsonata from 'jsonata' import { AppSyncClient } from '../lib/appsync/appSyncClient' import { queryWithIAM } from '../lib/appsync/queryWithIAM' im...
export default { users: 'get/users', tags: 'get/tags', categories: 'get/categories', courses: 'get/courses' }
<?xml version="1.0" ?><!DOCTYPE TS><TS language="it" version="2.0"> <defaultcodec>UTF-8</defaultcodec> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About PeopleCoin</source> <translation>Info su PeopleCoin</translation> ...
import 'google-closure-library/closure/goog/i18n/numberformatsymbolsext'; import alias = goog.i18n.NumberFormatSymbols_ar_001; export default alias;
import React, { CSSProperties } from 'react'; import useLocale from '@/utils/useLocale'; import { Descriptions, Typography, Card, Skeleton, } from '@arco-design/web-react'; import locale from './locale'; interface ProfileItemProps { title: string; data: any; style?: CSSProperties; type: 'origin' | 'cur...
import { expect } from 'chai'; import { TemplateElementParser as sut } from './templateElementParser'; describe('TemplateElementParser', () => { it('must have the name template', () => { // arrange const node:any = { hasAttribute: () => false }; // act ...
import INode from '../interfaces/INode'; /** * An abstract AST node that implements functions for a basic n-tree invariant. * * @abstract * @class ANode * @implements {INode<T>} * @template T */ abstract class ANode<T> implements INode<T> { constructor(private content_: T, private parent?: INode<any>, pri...
import { normalizeGetLocalStorage, normalizeSetLocalStorage, } from 'src/normalizers/localStorage' import {VERSION} from 'src/shared/constants' import { newVersion, loadLocalSettingsFailed, } from 'src/shared/copy/notifications' import {LocalStorage} from 'src/types/localStorage' export const loadLocalStorage...
<?xml version="1.0" ?><!DOCTYPE TS><TS language="be_BY" version="2.1"> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About Chemcoin</source> <translation type="unfinished"/> </message> <message> <location li...
import Node, {TKey, TLabel} from './Node'; /** * Обработка аргументов конструктора класса Node. */ export default ( (idOrLabel?: TKey | TLabel, labelOrChildren?: TLabel | readonly Node[], childrenOrUndefined?: readonly Node[]) => ({ children: childrenOrUndefined || [], ...( typeof labelOrChildren === 'string...
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *---------------------------------------------------------------...
import { Component, Input } from '@angular/core'; import { ISprkFooterGlobalLink, ISprkFooterLocalLinkColumn, ISprkFooterSocialLink, ISprkFooterAward, ISprkFooterBadgeLink, ISprkDisclaimerText, ISprkDisclaimerToggle, } from './sprk-footer.interfaces'; @Component({ selector: 'sprk-footer', template: `...
import { ComponentType } from 'react'; import { RegistryItem, Registry } from '../utils/Registry'; import { NumberFieldConfigSettings, SelectFieldConfigSettings, StringFieldConfigSettings } from '../field/processors'; /** * Option editor registry item */ export interface OptionsEditorItem<TOptions, TSettings, TEdito...
import express from 'express'; import type { SimulateOsuPayload, SimulateOsuResult } from '../../base/types'; import { executeSimulateOsu } from '../../osu-tools/performanceCalculator/simulate/osu'; export const simulateOsuRouter = express.Router(); simulateOsuRouter.post('/simulate/osu/one', async (req, res) => { ...
import * as k8s from '@pulumi/kubernetes'; import * as pulumi from '@pulumi/pulumi'; // Arguments for the billing app. export interface BillingAppArgs { provider: k8s.Provider; // Provider resource for the target Kubernetes cluster. imageTag: string; staticAppIP?: pulumi.Input<string>; // Optional static IP to u...
import { existsSync } from 'fs'; import { join } from 'path'; import { Env } from '../types'; import { Service } from './service'; const base = join(__dirname, '../../fixtures/service'); function buildService(opts: { name: string }) { const cwd = join(base, opts.name); const pluginPath = join(cwd, 'plugin.ts'); ...
import { Injectable } from '@angular/core'; import { nameByRace } from "fantasy-name-generator"; @Injectable({ providedIn: 'root' }) export class UserService { public name: string = "" constructor() { } public setName(name: string) { this.name = name; } public generateName() { const generatedName...
import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient.ts"; import { DeleteRegexMatchSetRequest, DeleteRegexMatchSetResponse } from "../models/models_0.ts"; import { deserializeAws_json1_1DeleteRegexMatchSetCommand, serializeAws_json1_1DeleteRegexMatchSetCommand...
import Container from '../../components/Container' import Head from 'next/head' import Typography from '../../components/Typography' export default function Saave() { return ( <Container id="saave-page" className="py-4 md:py-8 lg:py-12" maxWidth="2xl"> <Head> <title>Saave | Mist</title> <me...
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { Component } from '@angular/core'; import { ChatShowcaseService } from './chat-showcase.service'; @Component({ templateUrl: './chat-template-title.comp...
import React from 'react'; import { Box, Button, IconCirclePlus, } from '@aragon/ui'; import {advance} from '../../utils/web3'; import NumberBlock from "../common/NumberBlock"; import {QSDS} from "../../constants/tokens"; type AdvanceEpochProps = { user: string, epoch: number, epochTime: number, } function Ad...
import { Sequelize } from 'sequelize'; import { stub, assert, match, SinonStub, restore } from 'sinon'; import GlobalDemographicsService from '../../../src/services/global/globalDemographics'; import CommunityDemographicsService from '../../../src/services/ubi/communityDemographics'; import { ManagerAttributes } from ...
export default function bindCallback (func: Function, thisArg, argCount): Function { if (typeof thisArg === 'undefined') { return func; } switch (argCount) { case 0: return function() { return func.call(thisArg); }; case 1: return function(arg) { return func.call(thisArg, a...
declare module "discord-taisaku" { import { Client, ClientOptions, MessageEmbed, MessageEmbedOptions, Snowflake, GuildMember, Message } from "discord.js"; import { Logger } from "nicer-logging"; module "discord.js" { interface Message { util?: MessageUtils; } } export c...
export declare const cilChevronSquareRight: string[];
import * as React from 'react' import { OptionsObject, SnackbarKey, SnackbarMessage, withSnackbar} from "notistack"; import { ReactText } from "react"; interface Props{ intervalMs: number, getData: (url:string)=>Promise<any> } class NetworkCheck extends React.Component<{ enqueueSnackbar: (message: SnackbarMessa...
/* eslint-disable @typescript-eslint/no-non-null-assertion */ import { Filter, FilterType } from './FilterTypes' import { optionsFor } from '../../../helpers/labelHelper' const OR_OPERATOR = '|' export default class EnumFilter implements Filter { _type = FilterType.Enum _fieldName: string _enumKeys: string[] ...
import FormioComponent from 'formiojs/components/_classes/component/Component.js'; export default (() => { const beforeSubmit = FormioComponent.prototype.beforeSubmit; FormioComponent.prototype.beforeSubmit = function(...args: any) { if (this.materialComponent) { this.materialComponent.beforeSubmit(); ...
import { Ticker, TickSpec } from "./ticker"; import * as p from "../../core/properties"; export declare namespace ContinuousTicker { type Attrs = p.AttrsOf<Props>; type Props = Ticker.Props & { num_minor_ticks: p.Property<number>; desired_num_ticks: p.Property<number>; }; } export interface ...
import React from "react"; import { Grid, Select, FormControl, InputLabel, MenuItem, Button, IconButton, Dialog, DialogTitle, DialogContent, Typography, Box, makeStyles } from "@material-ui/core"; import { Timeline, TimelineItem, TimelineSeparator, TimelineDot, TimelineConnector, TimelineContent } fr...
export class Property { key: any; }
import {Exhibitor} from "./exhibitor.model"; export class Category { /** * @ignore */ private _id: number; /** * @ignore */ private _name: string; /** * @ignore */ private _description: string; /** * @ignore */ private _exhibitors: Exhibitor[]; get exhibitors(){ return t...
import { makeSchema } from "nexus"; import { join } from "path"; import * as types from "./graphql"; export const schema = makeSchema({ types, // 1 outputs: { typegen: join(__dirname, "..", "nexus-typegen.ts"), // 2 schema: join(__dirname, "..", "schema.graphql"), // 3 }, contextType: { module: joi...
import useEventListener from '@use-it/event-listener'; import Checkbox from 'src/components/Checkbox'; import Shortcut from 'src/components/Shortcut'; import tagWrapper from 'src/utils/tagWrapper'; import shortcuts from 'src/shortcuts'; import styles from './FlagBox.module.css'; const flagList = [ { name: 'glo...
var this = new Phaser.Game(800, 600, Phaser.CANVAS, 'phaser-example', { preload: preload, create: create, update: update, render: render }); import Phaser, { Weapon } from 'phaser' import { SceneHelper } from '~/helpers/SceneHelper'; export default class HelloWorldScene extends Phaser.Scene { private map: Phaser....
/** * Data Safe API * APIs for using Oracle Data Safe. * OpenAPI spec version: 20181201 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you un...
import React, { useEffect, useState } from 'react'; import PlexLoginButton from '../PlexLoginButton'; import { useUser } from '../../hooks/useUser'; import axios from 'axios'; import { useRouter } from 'next/dist/client/router'; import ImageFader from '../Common/ImageFader'; import { defineMessages, useIntl } from 'rea...
export function compareDates(first: Date, second: Date): number { const timeDiff = first.getTime() - second.getTime(); return timeDiff; }
// Type definitions for Microsoft Visual Studio Services v95.20160208.1028 // Project: http://www.visualstudio.com/integrate/extensions/overview // Definitions by: Microsoft <vsointegration@microsoft.com> /// <reference path='vss.d.ts' /> declare module "TFS/Build/Contracts" { import TFS_Core_Contracts = require("TFS/...
/* GENERATED FILE */ import * as React from "react"; import Svg, { Rect, Path } from "react-native-svg"; import { IconProps } from '../lib' function ThumbsUp(props: IconProps) { return <Svg viewBox="0 0 256 256" width={props.size} height={props.size} {...props}><Rect width={256} height={256} fill="none" /><Path d="...
import { bench, read, split } from '@lib'; import { usingMap } from '@lib/functions'; import { max } from '@lib/math'; import { day, year } from '.'; import { PlanePartition } from './part_one'; const partitionMap: Record<PlanePartition, '0' | '1'> = { F: '0', B: '1', L: '0', R: '1', }; export const calculateSeat...
import { ImmutableState, PayloadAction, ValuationState } from 'app/app.state'; import { Valuation } from 'app/model/valuation'; import { ValuationHistory } from 'app/model/valuationHistory'; import { ValuationActions } from 'app/services/valuation/valuation.actions'; import * as Immutable from 'seamless-immutable'; co...
import React from 'react'; import * as microsoftTeams from "@microsoft/teams-js"; const Configuration = () => { const [tabId, setTabId] = React.useState(''); React.useEffect(() => { microsoftTeams.app.initialize().then(() => { microsoftTeams.app.getContext().then(async (context: microsoftT...
export const Display = `<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" fill="currentColor" class="bi bi-display" viewBox="0 0 16 16"> <path d="M0 4s0-2 2-2h12s2 0 2 2v6s0 2-2 2h-4c0 .667.083 1.167.25 1.5H11a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1h.75c.167-.333.25-.833.25-1.5H2s-2 0-2-2V4zm1.398-.855a.758....
// Dependencies: import * as esquery from 'esquery'; import { SyntaxKind } from 'typescript'; import { TSQuerySelectorNode } from './tsquery-types'; // Constants: const IDENTIFIER_QUERY = 'identifier'; export function parse (selector: string): TSQuerySelectorNode { return validateParse(esquery.parse(selector)); }...
import { createParamDecorator, ExecutionContext } from '@nestjs/common'; export const UserId = createParamDecorator((data: unknown, ctx: ExecutionContext) => { const request = ctx.switchToHttp().getRequest(); return request.user?.id; });
// Libraries import React, {FunctionComponent} from 'react' import {connect} from 'react-redux' // Components import {Button} from '@influxdata/clockface' // Actions import {removeCheck} from 'src/timeMachine/actions' import {setCurrentCheck} from 'src/alerting/actions/checks' //Types import {RemoteDataState} from '...
import { Operation, Fragment } from '../'; import { collectFragmentsReferenced } from './collectFragmentsReferenced'; import { createHash } from 'crypto'; export function generateOperationId( operation: Operation, fragments: { [fragmentName: string]: Fragment }, fragmentsReferenced?: Iterable<string> ) { if (!...
<TS language="ro_RO" version="2.1"> <context> <name>AddressBookPage</name> <message> <source>Right-click to edit address or label</source> <translation>Faceți click dreapta pentru a edita adresa sau eticheta</translation> </message> <message> <source>Create a new address</source>...
import React from 'react'; import { Alert, View } from 'react-native'; import { storiesOf } from '@storybook/react-native'; import { action } from '@storybook/addon-actions'; import { RoundedButton, RoundedButtonType } from './RoundedButton'; import { GradientBackground } from './GradientBackground'; storiesOf('Rounde...
import { Observable } from 'rxjs' import { filter } from 'rxjs/operators' import { Epic as EpicTemplate } from 'redux-observable' import { Action } from './types' import { StoreActionCatalog, StoreActionType, StoreAction, StoreState } from '../modules' export type Epic = EpicTemplate<StoreAction, StoreAction, ...
import { tokenize } from './tokenize'; import { parse } from './parse'; import { evaluate } from './evaluate'; import { log, pipe } from './utilities'; import { parseProgram } from './parse-program'; import { transform } from './transform'; // transform, export const parseAndEvaluate = pipe(tokenize, parse, evaluate);...
import { console } from '@ephox/dom-globals'; import { Compare, Element } from '@ephox/sugar'; import { AlloyComponent } from '../api/component/ComponentApi'; import * as AlloyEvents from '../api/events/AlloyEvents'; import * as SystemEvents from '../api/events/SystemEvents'; import * as AlloyLogger from '../log/Alloy...
export * from './slider-control.component'; export * from './slider-control.module';
import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { FormComponent } from './form/form.component'; import { InvoiceComponent } from './invoice/invoice.component'; import { RouterModule } from '@angular/router'; import { SharedModule } from './shared/shared.module'; @NgModu...
import { GeneralState, getThemeFromSystem } from "../../reducers/general"; import { Appearance } from "react-native"; import Debounce from "debounce"; import { ThunkResult } from "../.."; /** * @function init * @description Initiate some watchers and load state from Async Storage */ export const init = (): ThunkRes...
import { mergeConfig } from "./vite"; import type { App } from "@vuepress/core"; import type { WebpackBundlerOptions, WebpackDevServer, } from "@vuepress/bundler-webpack"; import type { HandleFunction } from "connect"; import type { Plugin } from "vite"; import type { IncomingMessage, ServerResponse } from "http";...
/* Finds all possible Tags value from all posts */ import _ from "lodash"; import { graphql, useStaticQuery } from "gatsby"; import { Post } from "../components/PostList"; const query = graphql` { allMdx( sort: { fields: frontmatter___date, order: DESC } filter: { frontmatter: { published: { eq: "yes"...
import { TypeOrmModuleOptions } from '@nestjs/typeorm'; import ServerTextChannel from 'src/module/server-channels/entities/server-text-channel.entity'; import UserTextChannel from 'src/module/user-channels/entities/user-text-channel.entity'; import PrivateChannel from 'src/module/user-channels/entities/user-text-chann...
import {Component, ViewEncapsulation} from '@angular/core'; @Component({ templateUrl: './inputtextdemo.html', styleUrls: ['./inputtextdemo.scss'] }) export class InputTextDemo { disabled: boolean = true; value1: string; value2: string; value3: string; value4: string; value5: s...
import PropTypes from "prop-types"; import React from "react"; class CertificateChainInfo extends React.Component<any, any> { static contextTypes = { locale: PropTypes.string, localize: PropTypes.func, }; constructor(props: any) { super(props); this.state = ({ chain: [], isChainVerif...
import React from 'react'; import firebase from 'firebase/app'; import 'firebase/auth'; import { useRouter } from 'next/router'; import { Course, Grade } from '../common/data'; import { YearClassification } from '../common/student'; /** * A user for this app. */ export interface ServiceUser { /** * This user's ...
export * from "./table.component"; export * from "./table.models"; export * from "./table.module"; export * from "./table.pipe"; export * from "./table.service"; export * from "./table-th/table-th.component"; export * from "./table-td/table-td.component"; export * from "./table-header/table-header.component"; export * ...
class User { fullName: string; constructor(public firstName, public middleInitial, public lastName) { this.fullName = `${firstName} ${middleInitial} ${lastName}`; } } const user = new User('bob', 'michael', 'dylan') console.log(user.fullName); console.log(user.firstName);
import { Integration } from '@sentry/types'; /** JSDoc */ export declare class Ember implements Integration { /** * @inheritDoc */ name: string; /** * @inheritDoc */ static id: string; /** * @inheritDoc */ private readonly Ember; /** * @inheritDoc */ ...
import { AppPage } from './app.po'; import { browser, logging } from 'protractor'; describe('workspace-project App', () => { let page: AppPage; beforeEach(() => { page = new AppPage(); }); it('should display welcome message', () => { page.navigateTo(); expect(page.getTitleText()).toEqual('realmar...
import React from 'react' import styled from 'styled-components' import { HelpIcon, Skeleton, useTooltip } from '@becoswap-libs/uikit' import { useTranslation } from 'contexts/Localization' const ReferenceElement = styled.div` display: inline-block; ` export interface MultiplierProps { multiplier: string } const...
import { IconProps } from "../lib"; declare const SpeakerLow: (props: IconProps, ref: any) => import("solid-js").JSX.Element; export default SpeakerLow;
export { Data_132 as default } from "../../";
declare namespace NodeJS { export interface ProcessEnv { TABLE_REGION: string; TABLE_NAME_DEPLOYMENTS: string; TABLE_NAME_ALIASES: string; UPLOAD_BUCKET_ID: string; UPLOAD_BUCKET_REGION: string; } }
// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it. // FP Interfaces interface CurriedFn1<A, R> { (a: A): R } interface CurriedFn2<A, B, R> { (a: A): CurriedFn1<B, R> (a: A, b: B): R } interface CurriedFn3<A, B, C, R> { (a: A): CurriedFn2<B, C, R> (a: A, b: B): ...
import { demicrofy, formatLuna, formatLunaInput, formatUST, LUNA_INPUT_MAXIMUM_DECIMAL_POINTS, LUNA_INPUT_MAXIMUM_INTEGER_POINTS, } from '@anchor-protocol/notation'; import type { bLuna, Luna, uUST } from '@anchor-protocol/types'; import { useConnectedWallet, WalletReady, } from '@anchor-protocol/wallet...
import { AlloyType } from '../AlloyTypes'; import { AlloyAtom } from './AlloyAtom'; import { AlloyElement } from './AlloyElement'; import { AlloyField } from './AlloyField'; import { AlloySignature } from './AlloySignature'; import { AlloyTuple } from './AlloyTuple'; /** * An Alloy skolem paired with the ID assigned ...
export interface RedeemForgotPasswordState { password: string; passwordAgain: string; showError: boolean; showSpinner: boolean; showCompletion: boolean; } export const defaultForgotPasswordState: RedeemForgotPasswordState = { password: '', passwordAgain: '', showError: false, showSpinner: false, sh...
/* * 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 { ESFilter } from 'elasticsearch'; import { SERVICE_AGENT_NAME, PRO...
import { NgModule } from '@angular/core'; import { EffectsModule } from '@ngrx/effects'; import { SharedModule } from '.'; import { PlayerComponent } from './components/player'; import { PlayerControlsComponent } from './components/player-controls'; import { FormatVolumePipe } from './pipes/format-volume'; import { ...
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *---------------------------------------------------------------...
<TS language="zh_CN" version="2.1"> <context> <name>AddressBookPage</name> <message> <source>Right-click to edit address or label</source> <translation>鼠标右击编辑地址或标签</translation> </message> <message> <source>Create a new address</source> <translation>创建新地址</translation> ...
export const FooterData = { Title: '2020 프로그래머스', Navbar: [ '기업용 프로그래머스', '프로그래밍 대회 개최 문의', '프로그래머스 스쿨', '개인정보 처리방침', '이용약관', 'FAQ/문의', ], Description: '(주)그렙 / 공동대표 이확영, 임성수 / 서울특별시 강남구 테헤란로 151, 510호, 526호(역삼동, 역삼하이츠빌딩) / 사업자등록번호 220-88-75699 / 통신판매업신고 제 2014-...
interface Config { auth0_client_id: string, auth0_domain: string, auth0_redirect_uri: string, } const config: Config = { auth0_client_id: (process.env.REACT_APP_AUTH0_CLIENT_ID as string), auth0_domain: (process.env.REACT_APP_AUTH0_DOMAIN as string), auth0_redirect_uri: (process.env.REACT_APP_A...
/* * 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...