text
stringlengths
10
953k
<TS language="ja" 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>新しいアドレスを作成</tran...
/** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-ge...
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { RegistryContract, RegistryContractInterface, } from "../RegistryContract"; const _abi = [ { anonymous...
import {MigrationInterface, QueryRunner} from "typeorm"; export class AddMonthReportEntity1606599771690 implements MigrationInterface { name = 'AddMonthReportEntity1606599771690' public async up(queryRunner: QueryRunner): Promise<void> { await queryRunner.query(`ALTER TABLE "transactions" DROP CONSTRA...
import {SchemaDir, sortTreeChildren} from './SchemaDir'; import {SchemaFile} from './SchemaFile'; import {SchemaTreeItem} from './SchemaTreeItem'; type ItemMapper = (item: SchemaTreeItem) => SchemaTreeItem; export type FileFilterFn = (file: SchemaFile) => boolean; export class SchemaTree { private _children: Sche...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. import { ActivityTypes, TurnContext, CardFactory } from 'botbuilder'; import { getMovies } from './showtimes' import { createMovieCard } from './card'; import { movies } from './index'; export class MyBot { /** ...
import { Component, OnInit, Input, Output, EventEmitter, ChangeDetectionStrategy } from '@angular/core'; import { ShopListItemGroup, ShopListItemUI } from '../../state/shoplist.query'; @Component({ selector: 'app-shoplist-item-group', templateUrl: './shoplist-item-group.component.html', styleUrls: ['./shoplist-i...
export interface ISpaConfiguration { apiBaseUrl: string; }
import * as crypto from 'crypto'; import { AuthProvider, AuthContext } from './auth_provider'; import { Callback, ns } from '../../utils'; import { MongoError } from '../../error'; export class MongoCR extends AuthProvider { auth(authContext: AuthContext, callback: Callback): void { const { connection, credentia...
export * from './crud.controller';
import { Interval } from './data'; /** * Combines overlapping intervals. * @param intervals A collection of intervals on the format: [start, stop] * @returns Array with compressed intervals * * @example compressInterval([ [1, 5], [4, 7] ]); // Returns: [[1, 7]] */ export function compressIntervals(intervals: [nu...
import {HttpException, HttpStatus} from "@nestjs/common"; export class ValidationException extends HttpException { messages; constructor(response) { super(response, HttpStatus.BAD_REQUEST); this.messages = response; } }
// This file is automatically generated by typings-for-css-modules. // Please do not change this file! export const inlineLink: string;
import { BrowserWindow } from 'electron' import path from 'path' import env from 'env' const showWindow = (url: string, title: string, options?: Electron.BrowserWindowConstructorOptions): BrowserWindow => { const opened = BrowserWindow.getAllWindows().find(bw => bw.getTitle() === title) if (opened) { opened.we...
import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { ActoresComponent } from './actores.component'; const routes: Routes = [ { path: '', component: ActoresComponent } ]; @NgModule({ imports: [RouterModule.forChild(routes)], exports:...
import { app, BrowserWindow, screen } from 'electron'; import * as path from 'path'; import * as url from 'url'; const {autoUpdater} = require("electron-updater"); const isDev = require('electron-is-dev'); if (isDev) { autoUpdater.updateConfigPath = path.join(__dirname, 'dev-app-update.yml'); } let win: BrowserWindow...
import addMilliseconds from './AddMilliseconds' import { MILLISECONDS_IN_SECOND } from './Constants' import { toInteger } from './toInteger' export default function addSeconds ( inputDate: Date | number, offset: number ): Date { const amount = toInteger(offset) return addMilliseconds(inputDate, amount * MILLIS...
import { Injectable } from '@angular/core'; import { Storage } from '@ionic/storage'; import { FileTransfer, FileUploadOptions, FileTransferObject } from '@ionic-native/file-transfer'; import { Http, Headers } from '@angular/http'; import { environment as ENV } from '../../environments/environment'; @Injectable() expo...
import colors from "./colors"; import space from "./space"; const theme = { colors, space }; export default theme;
import { botCache } from "../../mod.ts"; import { getMember } from "../../deps.ts"; botCache.arguments.set("member", { name: "member", execute: async function (_argument, parameters, message) { const [id] = parameters; if (!id) return; const guild = cache.guilds.get(message.guildID); if (!guild) r...
/* tslint:disable */ /* eslint-disable */ // This file was automatically generated and should not be edited. // ==================================================== // GraphQL query operation: launchList // ==================================================== export interface launchList_launches_launches_rocket { _...
export * from "./Cloud9"; export * from "./Cloud9Client"; export * from "./commands"; export * from "./models"; export * from "./pagination"; export { Cloud9ServiceException } from "./models/Cloud9ServiceException";
export * from "./DescribeClusterDbRevisionsPaginator"; export * from "./DescribeClusterParameterGroupsPaginator"; export * from "./DescribeClusterParametersPaginator"; export * from "./DescribeClusterSecurityGroupsPaginator"; export * from "./DescribeClusterSnapshotsPaginator"; export * from "./DescribeClusterSubn...
import Locale from '../constants/locale'; import enUs from '../translations/en-us.json'; export default { [Locale.EnUs]: enUs, };
import { Component, ChangeDetectionStrategy, Input, Output, EventEmitter, OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import 'rxjs/add/operator/debounceTime'; import 'rxjs/add/operator/distinctUntilChanged'; import { Column } from '../../shared'; @Component({ selector: 'adg-filter...
import * as __aws_sdk_middleware_stack from "@aws-sdk/middleware-stack"; import * as __aws_sdk_types from "@aws-sdk/types"; import { SetReceiptRulePosition } from "../model/operations/SetReceiptRulePosition"; import { InputTypesUnion } from "../types/InputTypesUnion"; import { OutputTypesUnion } from "../types/OutputTy...
import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface ResourceDataSyncProperties { KMSKeyArn?: Value<string>; BucketName: Value<string>; BucketRegion: Value<string>; SyncFormat: Value<string>; SyncName: Value<string>; BucketPrefix?: Value<string>; } e...
import { bold, generateUUID, semver, Tar, underline } from "./deps.ts"; import { NestError } from "./utils/error.ts"; import { log } from "./utils/log.ts"; import type { Module } from "./utils/types.ts"; interface PublishOptions { module: Module; version: semver.SemVer; files: string[]; token: string; wallet...
// This file can be replaced during build by using the `fileReplacements` array. // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. // The list of file replacements can be found in `angular.json`. export const environment = { production: false, appUrl: 'https://localhost:44363/' }; /* * ...
/// <reference path="typings/angularjs/angular.d.ts" /> var app = angular.module("app", []); class RouteEditorController { title: string = "Angular Options Getting Started"; viewContainerComponents: Array<ViewContainerComponent> = [ { id:1, name: "Product View Container Comp...
export class AppConsts { static remoteServiceBaseUrl: string; static appBaseUrl: string; static localeMappings: any = []; static readonly userManagement = { defaultAdminUserName: 'admin' }; static readonly localization = { defaultLocalizationSourceName: 'EventCloud' }; ...
import _ = require("lodash"); import { Settings } from "../Settings/Settings"; import { Store } from "../Utility/Store"; const LegacyCommandSettingsKeys = { "toggle-menu": "Toggle Menu", "start-encounter": "Start Encounter", "reroll-initiative": "Reroll Initiative", "end-encounter": "End Encounter", "clean-e...
/****************************************************** * Project: EFZ * Author: Joshua Graham * Purpose: Thrown in the case of a web request error. * Revision History: None ******************************************************/ /** Possible error types */ export enum RequestErrorType { //------------------...
/** * A general canvas that exists in memery for x-engine to perform offscreen * calculatons. Note this is NOT the same as the buffer rendering canvas * TODO (uxder) to be implemented. But more a shared, singleton to canvas * that can be drawn on to do calculations. * * Note that since this is shared resource, ...
import {VuexModule, Module, Mutation, Action} from 'vuex-module-decorators' import axios from "axios" import {IVolume} from "../../types/volume" import {IFieldValue} from "../../types/Global"; @Module({ namespaced: true }) export default class Volume extends VuexModule { public table: IVolume[] = [] publi...
import { SmartBuffer } from 'smart-buffer' import { OP_DEFI_TX } from '../../../../src/script/dftx' import { CTokenUpdateAny, TokenUpdateAny } from '../../../../src/script/dftx/dftx_token' import { OP_CODES } from '../../../../src/script' import { toBuffer, toOPCodes } from '../../../../src/script/_buffer' import BigNu...
/* -------------------------------------------------------------------------- */ /* Product Name: DictionaryEngine */ /* Author: Mediasoftpro */ /* Email: support@mediasoftpro.com ...
import React from 'react'; import { Controller, useForm } from 'react-hook-form'; const ParseFormatTextarea = ({ value = [], onChange }) => { const [text, setText] = React.useState(value); const handleChange = (e) => { const value = e.target.value.split('\n'); setText(value); onChange(value); }; ...
import * as Container from '../../../util/container' import * as Types from '../../../constants/types/crypto' import * as CryptoGen from '../../../actions/crypto-gen' import * as ConfigGen from '../../../actions/config-gen' import * as FSGen from '../../../actions/fs-gen' import HiddenString from '../../../util/hidden-...
/** * @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 { Injectable } from '@angular/core'; @Injectable() export class Service657Service { constructor() { } }
import {ServerFilter} from "../filter/ServerFilter"; import {FileWrapper} from "../FileWrapper" const encode = 'utf8'; function buildResponseData(response){ let result = response.result; if(!!result){ if(result instanceof FileWrapper){ response.setHeader('Content-Type', result.type)...
import { Config } from '~cli/domain/models/configs'; export interface CmdArgs { scope: string; config: Config; }
import crypto from "crypto" import multer from 'multer' import {resolve} from 'path' const tmpFolder = resolve (__dirname, "..","..","tmp") export default{ tmpFolder, storage: multer.diskStorage({ destination:tmpFolder, filename:(request, file , callback) =>{ ...
// package: google.ads.googleads.v2.resources // file: google/ads/googleads/v2/resources/display_keyword_view.proto import * as jspb from "google-protobuf"; import * as google_api_annotations_pb from "../../../../../google/api/annotations_pb"; export class DisplayKeywordView extends jspb.Message { getResourceName()...
import { NgModule } from '@angular/core'; import { IonicPageModule } from 'ionic-angular'; import { SettingUserPage } from './setting-user'; @NgModule({ declarations: [ SettingUserPage, ], imports: [ IonicPageModule.forChild(SettingUserPage), ], exports: [ SettingUserPage ] }) export class Sett...
import { NgModule } from '@angular/core'; import { IonicPageModule } from 'ionic-angular'; import { InspecaoPage } from './inspecao'; import { ComponentsModule } from '../../components/components.module'; @NgModule({ declarations: [ InspecaoPage, ], imports: [ ComponentsModule, IonicPageModule.forChi...
import * as React from 'react'; import { mount } from 'enzyme'; import OkIcon from '@skbkontur/react-icons/Ok'; test('Icon renders', () => { mount(<OkIcon />); }); test('Icon has right color', () => { const wrapper = mount(<OkIcon color="red" />); expect( wrapper .find('.root') .first() .p...
import { Action } from 'redux' import { EACTIONS } from '../ActionsEnum'; import { rstate_forget_password } from '../app_state'; export function reducer(state: rstate_forget_password, action: Action<EACTIONS>): rstate_forget_password { if (state === undefined) return { show_dialog: false } switch (act...
import { Command } from "../Command"; import { CommandSchema } from "../CommandSchema"; import { ModuleCreator } from "./ModuleCreator"; import { StringFormater } from "@wildebeest/string"; import { Template } from "@wildebeest/template/src/Template"; export declare class CreateModuleCommand implements Command { pr...
import * as React from "react"; import * as reltab from "reltab"; import { AppState } from "../AppState"; import { Button } from "@blueprintjs/core"; import { FilterEditorRow } from "./FilterEditorRow"; import { DelayedCalcFooter } from "./DelayedCalcFooter"; import { StateRef } from "oneref"; import { useState } from ...
import * as mobx from 'mobx'; import { action, decorate, IObservableArray, observable, runInAction } from 'mobx'; import io from 'socket.io-client'; import { addTeam } from '../api/team-leader'; import { getTeamList } from '../api/team-member'; import { Discussion } from './discussion'; import { Post } from './post';...
import NodeWithChildren from './NodeWithChildren'; export interface MDXDocMetadata { title: string; description: string; position: number; id: string; } export default class MDXDocument extends NodeWithChildren { expoImport = false; svgImport = false; imports: Set<string>; props: MDXDocMetadata; co...
import { RefObject, useState } from 'react'; import screenfull from 'screenfull'; import useIsomorphicLayoutEffect from './useIsomorphicLayoutEffect'; import { noop, off, on } from './misc/util'; export interface FullScreenOptions { video?: RefObject< HTMLVideoElement & { webkitEnterFullscreen?: () => void; webk...
/** * @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 { TestBed, inject } from '@angular/core/testing'; import { Service102Service } from './service-102.service';...
import { APP_FILTER } from '@nestjs/core'; import { Module } from '@nestjs/common'; import { AppController } from './app.controller'; import { AppService } from './app.service'; import { TypeOrmModule } from '@nestjs/typeorm'; import { HttpErrorFilter } from './shared/http-error.filter'; import { UserModule } from './u...
import * as mongoose from "mongoose"; export type PostDocument = mongoose.Document & { title: string; description: string; }; const postSchema = new mongoose.Schema( { title: { type: String, required: "Please enter the title of your Post", }, description: { ...
/* * 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. */ /* eslint-disable @typescript-eslint/camelcase */ import * as t from 'io-ts'...
import {async, inject, TestBed} from '@angular/core/testing'; import {COOKIE_CONSENT_CONFIG, DEFAULT_CONSENT_CONFIG} from '../cookie-consent.conf'; import {WINDOW} from '@acpaas-ui/ngx-utils'; import {CookieconsentService} from './cookie-consent.service'; const cookieconsentConfig: any = {}; const windowStub: any = {...
/// <reference path="../../src/types/weiwudi.d.ts" /> import { OSM } from "ol/source"; import { CrossCoordinatesArray, ViewpointArray } from "./mixin"; import { Coordinate } from "ol/coordinate"; import { Size } from "ol/size"; declare const NowMap_base: (abstract new (...args: any[]) => { weiwudi?: import("weiwudi...
import {AGE_GROUPS, SeasonName} from '../../common'; import {Registration} from './registration'; describe('registration state', () => { beforeEach(() => { jest.useFakeTimers('modern'); }); test('when fall 2021 then U5-U6 age group is 2016-2017', () => { setCurrentTime('2021-08-23T00:00:00...
import React from 'react'; import { storiesOf } from '@storybook/react'; import { number, boolean } from '@storybook/addon-knobs'; import { css } from '@leafygreen-ui/emotion'; import { uiColors } from '@leafygreen-ui/palette'; import { Logo, LogoMark, CloudManagerLogo, AtlasLogo, RealmLogo, ChartsLogo, } f...
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *---------------------------------------------------------------...
import { newE2EPage } from '@stencil/core/testing'; describe('example-no-shadow', () => { it('renders', async () => { const page = await newE2EPage(); await page.setContent('<example-no-shadow></example-no-shadow>'); const element = await page.find('example-no-shadow'); expect(element).toHaveClass('...
import { TButton, TTable } from "vue-tailwind/src/themes/default"; const TButton = { // baseClass: 'border block rounded inline-flex items-center justify-center', baseClass: "rounded-lg border block inline-flex items-center justify-center", // primaryClass: 'text-white bg-blue-500 border-blue-500 hover:bg-blue-6...
import { formatJSONResponse, ValidatedEventAPIGatewayProxyEvent } from "../../../../lib/api-gateway"; import { TaskRepository } from "../../repositories/implements/TaskRepository"; import schema from "./schema"; const findByTaskStatus: ValidatedEventAPIGatewayProxyEvent<typeof schema> = async (event) => { try { con...
<?xml version="1.0" ?><!DOCTYPE TS><TS language="hu" version="2.0"> <defaultcodec>UTF-8</defaultcodec> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About Centoyacoin</source> <translation>A Centoyacoinról</translation> ...
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, ManyToOne, JoinColumn, } from 'typeorm'; import Map from './Map'; @Entity('train_line') class TrainLine { @PrimaryGeneratedColumn('increment') id: number; @ManyToOne(() => Map) @JoinColumn({ name: 'id' }) map...
import * as React from 'react'; import { ParentComponent } from '../types/parent-component'; import 'materialize-css/dist/css/materialize.css'; export interface RowProps extends ParentComponent { } export declare const Row: React.FunctionComponent<RowProps>;
/** * DoubleClick * @file 双击控件 * @module app/components/common/double-click * @author Surmon <https://github.com/surmon-china> */ import React, { Component } from 'react' import { TouchableWithoutFeedback, View, StyleProp, ViewStyle } from 'react-native' import { observable, action } from 'mobx' import { observer...
import * as React from 'react'; import { Link } from '../index'; export const DisabledFocusable = () => ( <Link inline disabled disabledFocusable href="https://www.bing.com"> Disabled but still focusable </Link> );
import { ThemeConfig } from '@chakra-ui/react'; export const config: ThemeConfig = { initialColorMode: `dark`, useSystemColorMode: false, };
import { Component, OnInit } from '@angular/core'; import { Ville } from '../../models/ville'; import { DataApiHttpService } from '../../services/data-api-http.service'; @Component({ selector: 'app-villes', templateUrl: './villes.component.html', styleUrls: ['./villes.component.css'] }) export class VillesCompon...
import { StyledIcon } from '@styled-icons/styled-icon'; export declare const ChildFriendly: StyledIcon; export declare const ChildFriendlyDimensions: { height: number; width: number; };
import { app } from "electron"; export default { app: { system: { label: app.name, aboutApp: `About ${app.name}`, quitApp: `Quit ${app.name}`, checkForUpdates: "Check for Updates", services: "Service", hideWindow: "Hide", hideOthers: "Hide Others", closeWindow: "Cl...
import * as config from "../../config.json"; import Request from "request"; import { Persistence } from "../../utilities/persistenceJS"; import { broadcastTx } from "../../utilities/broadcastTx"; import { getWallet } from "../../utilities/keys"; export class quashIdentity extends Persistence { quash = async ( ...
/* Utilities to facilitate testing */ import configureMockStore from 'redux-mock-store' import thunk from 'redux-thunk' import { InitializationState } from 'src/geth/reducer' import i18n from 'src/i18n' import { RootState } from 'src/redux/reducers' import { getLatestSchema } from 'test/schemas' import { mockAddressT...
import { check, Match } from 'meteor/check'; import { Meteor } from 'meteor/meteor'; import { Mongo } from 'meteor/mongo'; import Ansible from '../../ansible'; import { userMayUseDiscordBotAPIs, userMayConfigureDiscordBot, } from '../permission_stubs'; import DiscordCacheSchema, { DiscordCacheType } from '../schema...
export { Decorator, CleanupCallback } from "./types"; export { default as withAutoHeight } from "./withAutoHeight"; export { default as withClickEvent } from "./withClickEvent"; export { default as withSetCommentID } from "./withSetCommentID"; export { default as withEventEmitter } from "./withEventEmitter"; export { d...
import * as t from 'io-ts'; import { createOperation } from '../../util/createOperation'; import * as TextOperation from '../../util/textOperation'; export const state = t.type({ $v: t.literal(1), $r: t.literal(1), name: t.string, }); export type State = t.TypeOf<typeof state>; export const downOperatio...
import {NgModule} from "@angular/core"; import {UtcToLocalDatePipe} from "./pipes/utc-to-local-date.pipe"; import {KeysPipe} from "./pipes/object-values.pipe"; import {GetValueFromDictionaryPipe} from "./pipes/get-value-from-dictionary.pipe"; @NgModule({ imports: [], declarations: [ KeysPipe, U...
/** * @name * @author MingShined */ import React, { Fragment } from 'react'; import CityPicker from 'src/city-picker'; interface Props {} const Area: React.FC<Props> = props => { return ( <Fragment> <CityPicker showArea={false} /> </Fragment> ); }; export default Area;
import { Earthquake16 } from "../../"; export = Earthquake16;
import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class AuthServiceLocal { constructor() { } loggedIn() { return !!localStorage.getItem('isLoggedIn'); } userData(user: any) { return user; } }
import { animate, state, style, transition, trigger } from '@angular/animations'; import { Component, Input, OnDestroy, OnInit } from '@angular/core'; import { MatTableDataSource } from '@angular/material/table'; import { IEntityDictionary } from '@briebug/ngrx-auto-entity'; import { ProductFacade } from 'facades/produ...
// ref: // - https://umijs.org/plugin/develop.html import { IApi, utils } from "umi"; import { readFileSync } from "fs"; import { join, extname } from "path"; import getClassModels from "./getClassModes/getClassModels"; import { Options } from "./interfaces"; const { Mustache } = utils; export default function(api: I...
// / <reference types="next" /> // / <reference types="next/types/global" /> declare module '*.scss' { const content: Record<string, string>; export default content; }
import { FrameworkConfiguration } from "aurelia-framework"; export declare function configure(config: FrameworkConfiguration): void; export * from './custom-elements/clock';
import { autoBindMethodsForReact } from 'class-autobind-decorator'; import fuzzySort from 'fuzzysort'; import React, { PureComponent } from 'react'; import { AUTOBIND_CFG } from '../../../common/constants'; import { fuzzyMatch } from '../../../common/misc'; interface Props { search: string; text: string; blankV...
// SPDX-License-Identifier: MIT // Copyright (c) 2020 The Pybricks Authors import { Button, Intent, Position, Tooltip } from '@blueprintjs/core'; import { WithI18nProps, withI18n } from '@shopify/react-i18n'; import React from 'react'; import { TooltipId } from './button-i18n'; import en from './button-i18n.en.json'; ...
import { Modal } from "app/components/Modal"; import { TransactionAmount, TransactionConfirmations, TransactionExplorerLink, TransactionFee, TransactionMemo, TransactionRecipients, TransactionSender, TransactionTimestamp, } from "domains/transaction/components/TransactionDetail"; import React, { useMemo } from ...
import { upperFirst } from 'lodash' import DeleteIcon from 'mdi-react/DeleteIcon' import WarningIcon from 'mdi-react/WarningIcon' import * as React from 'react' import { Subject, Subscription } from 'rxjs' import { catchError, map, mapTo, startWith, switchMap, tap } from 'rxjs/operators' import * as GQL from '../../../...
import { Moralis } from "moralis"; import { useEffect } from "react"; import { useMoralis } from "../useMoralis"; export type MoralisListenerHandler = ( entity: Moralis.Object<Moralis.Attributes>, ) => void; export const _useSubscriptionListener = ({ name, handler, enable, subscription, }: { name: "open" ...
import {Pipe, PipeTransform} from '@angular/core'; import {parseUserEmail} from '../utils'; @Pipe({ name: 'userEmail' }) export class UserEmailPipe implements PipeTransform { transform(value: any, ...args: any[]): any { return parseUserEmail(value); } }
import React from 'react'; import { Switch, Route } from 'react-router-dom'; import Main from '../pages/Main'; const Routes: React.FC = () => ( <Switch> <Route path="/" component={Main} /> </Switch> ); export default Routes;
import {Component, Inject, ViewChild} from '@angular/core'; import {FileSystemEntry} from '../../common/rest/file-system-data'; import {RestService} from '../../common/rest/rest.service'; import {BehaviorSubject} from 'rxjs'; import {FileSystemParams} from '../../common/base/file-system-params'; import {MAT_DIALOG_DATA...
/** * 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...
import { FULL_BASE_URL_EN_USD } from '../../../site-context-selector'; import { randomString } from '../../../user'; import { INPUT_TYPE, MyCompanyConfig, MY_COMPANY_FEATURE } from '../models'; export const budgetConfig: MyCompanyConfig = { name: 'Budget', baseUrl: `${FULL_BASE_URL_EN_USD}/organization/budgets`, ...
import { SingleStatBaseOptions, BigValueColorMode, BigValueGraphMode, BigValueJustifyMode, BigValueTextMode, } from '@grafana/ui'; import { ReducerID, standardEditorsRegistry, FieldOverrideContext, getFieldDisplayName, escapeStringForRegex, VizOrientation, } from '@grafana/data'; import { PanelOpt...
import Configuration from './no-path-concat.d' const configuration:Configuration = { ruleId: `node/no-path-concat`, providerId: `eslint-plugin-node`, priority: `IMPORTANT`, activate: true, options: [], } export default configuration
/* * Data windows for digital signal processing. * * The supported window types are: * * Blackman * Hamming * Hann * Nuttall * Rectangular * * Both symmetric (for filtering) and non-symmetric (for spectral analysis) * windows are supported. To create a window, call the * `DataWindow.createWi...