text stringlengths 10 953k |
|---|
<?xml version="1.0" ?><!DOCTYPE TS><TS language="eu_ES" version="2.1">
<context>
<name>AboutDialog</name>
<message>
<location filename="../forms/aboutdialog.ui" line="+14"/>
<source>About Satoshi</source>
<translation type="unfinished"/>
</message>
<message>
<location lin... |
export {
SkyListPagingModule
} from '@skyux/list-builder/modules/list-paging/list-paging.module'; |
import * as React from 'react';
import { compose, withProps } from 'recompose';
import reviewIcon from '../../assets/icons/icon-review.svg';
import bidIcon from '../../assets/icons/icon-auction.svg';
import leadershipIcon from '../../assets/icons/icon-tribunal.svg';
import appealsIcon from '../../assets/icons/icon-appe... |
import { generateContext } from 'contexts';
import { RestApiState } from 'hooks/useRestApi';
import { User } from 'types';
const contextProvider = generateContext<RestApiState<User[]>>({
initialState: {
errorCount: 0,
hasLoaded: false,
isLoading: false,
},
name: 'Users',
});
export default contextPr... |
declare module LocalStorage {
function openDatabaseSync(dbname: string, dbver: string,
dbdesc: string, dbsize: number,
dbconfig: Function) : Database;
}
declare interface Database {
transaction(func: Function);
changeVersion(v1: string, v2: string);
}
class Daily {
dbh: Database
ba... |
import { describe, expect, it } from 'vitest'
import { countMaxOrSubsets, countMaxOrSubsets2 } from '.'
describe('统计按位或能得到最大值的子集数目', () => {
describe('回溯', () => {
testCase(countMaxOrSubsets)
})
describe('位运算', () => {
testCase(countMaxOrSubsets2)
})
})
function testCase(fn: (nums: number[]) => numbe... |
import { Survey } from '@/domain/entities';
export interface LoadSurveyByIdRepository {
loadById(id: string): Promise<Survey | null>;
} |
import React from "react";
import { Text } from "react-native";
import { render } from "test-utilities";
import App from "./index";
it("renders the component passed as children", () => {
const { getByText } = render(
<App>
<Text>React</Text>
</App>,
);
expect(getByText("React")).toBeDefined();
}); |
/*
* cloudbeaver - Cloud Database Manager
* Copyright (C) 2020 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
export interface ClassCollection {
[key: string]: string;
}
export class Composes {
composes: Class... |
import { Component, Prop, Host, h, State } from '@stencil/core';
export interface Sort {
column: string;
order: 'ASC' | 'DESC';
}
@Component({
tag: 'yoobic-grid',
styleUrl: 'yoobic-grid.css',
shadow: true,
})
export class YoobicGrid {
@Prop({ mutable: true }) data: object[] = [];
@Prop() sortIconHexColo... |
import React, { FC } from "react";
import { Footer } from "../components/Footer";
import { Navbar } from "../components/Navbar";
import { classes } from "../configs/classnames";
export const MainLayout: FC = ({ children }) => {
return (
<main
className={`w-screen h-screen ${classes.background.base} bg-no-r... |
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import {
ethers,
EventFilter,
Signer,
BigNumber,
BigNumberish,
PopulatedTransaction,
} from "ethers";
import {
Contract,
ContractTransaction,
Overrides,
CallOverrides,
} from "@ethersproject/contracts";
import... |
import { Formatter } from './../models/index';
export const deleteIconFormatter: Formatter = () =>
`<i class="fa fa-trash pointer delete-icon" aria-hidden="true"></i>`; |
import { makeStyles, Theme } from '@material-ui/core/styles';
export const useStyles = makeStyles((theme: Theme) => ({
dayWrapper: {
marginBottom: '2em',
},
taskSectionWrapper: {
padding: '0 10px',
display: 'flex',
alignItems: 'center',
height: 40,
justifyContent: 'space-between',
fon... |
export interface MessageInfo {
messageId: number;
senderId: number;
created: number;
text: string;
isRead: boolean;
}
export interface ConversationInfo {
user1Id: number;
user2Id: number;
lastMessage: MessageInfo
} |
import { MetadataStorage } from 'class-validator';
export function getValidationMetadataByTarget(target: Function) {
const classValidator: typeof import('class-validator') = require('class-validator');
const metadataStorage: MetadataStorage = (classValidator as any)
.getMetadataStorage
? (classValidator as... |
/**
* @license
* Copyright (c) 2021 Alex Layton
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
import Delete from '../delete';
/**
* An "OADA remove" is just DELETE
*/
export class Remove extends Delete {} |
import * as React from "react";
import { Primitive } from "utility-types";
import Storage from "~/utils/Storage";
import Logger from "~/utils/logger";
import useEventListener from "./useEventListener";
/**
* A hook with the same API as `useState` that persists its value locally and
* syncs the value between browser ... |
import React from 'react';
import { IoLink, IoLocation, IoPeople } from 'react-icons/io5';
import { useGithubUser } from '../../../hooks/useGithubUser';
import { Langs } from './Langs';
import { Container } from './styles';
export const UserData = (): JSX.Element => {
const { user } = useGithubUser();
return (
... |
<TS language="he_IL" 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... |
// (C) 2007-2020 GoodData Corporation
const demoProject: { [domain: string]: string } = {
"https://secure.gooddata.com": "k26dtejorcqlqf11crn6imbeevp2q4kg",
"https://staging3.intgdc.com": "mbuumy476p78ybcceiru61hcyr8i8lo8",
"https://staging2.intgdc.com": "ws7pxsamkx8o0t1s7kfvkj5o41uwcmqg",
"https://stag... |
import {
PageImportExportTask,
PageImportExportTaskStatus,
PageImportExportTaskStorageOperationsCreateParams,
PageImportExportTaskStorageOperationsCreateSubTaskParams,
PageImportExportTaskStorageOperationsDeleteParams,
PageImportExportTaskStorageOperationsGetParams,
PageImportExportTaskStora... |
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import { expect } from 'chai';
import { processArguments } from '../../utilities';
describe('Miscellaneous tests', () => {
it(`verify comma... |
// Copyright 2016-2020, Pulumi Corporation. All rights reserved.
import * as aws from "@pulumi/aws";
import * as pulumi from "@pulumi/pulumi";
export class InputStream extends pulumi.ComponentResource {
public inputStream: aws.kinesis.Stream;
constructor(name: string, args: InputStreamArgs, opts?: pulumi.C... |
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<h1>My First Angular App</h1>
<my-test></my-test>`
})
export class AppComponent { } |
/**
* @license
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or ... |
import {existsSync, readFileSync} from 'fs';
import {sync as glob} from 'glob';
import {basename, dirname, isAbsolute, join} from 'path';
import * as ts from 'typescript';
/** RegExp that matches Angular component inline styles that contain a sourcemap reference. */
const inlineStylesSourcemapRegex = /styles: ?\[["'].... |
import { StorageServer } from './server/S3server';
export interface StorageSimulatorDataSourceBaseConfig {
name: string;
type: string;
}
export type StorageSimulatorServerConfig = {
port: number;
route: string;
localDirS3: string;
};
export class AmplifyStorageSimulator {
private _server: StorageServer;
... |
export const webpackJs = (mainFile, output) =>
`
var ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
module.exports = {
entry: '${mainFile}',
output: {
filename: '${output}'
},
watchOptions: {
aggregateTimeout: 300,
... |
namespace Lesson10.Models {
export class Auto {
public _id: number;
public make: string;
public modelOfCar: string;
public year: number;
}
} |
export * from './moving-color'
export * from './horror'
export * from './shining'
export * from './extreme-offset'
export * from './bingo'
export * from './floor' |
export * from './controls';
export * from './dynamic-form';
export * from './dynamic-form-control';
export * from './error-summary';
export * from './form-control.service';
export * from './validation.service'; |
import { UserOutlined, LockOutlined } from "@ant-design/icons-vue";
import { defineComponent, reactive, ref, computed } from "vue";
import UserController from "@/service/controller/system/userController";
import router from "@/router";
import store from "@/store";
import { useForm } from "@ant-design-vue/use";
import {... |
import algoliasearchHelper from 'algoliasearch-helper';
import { createSendEventForFacet } from '../createSendEventForFacet';
import type { SearchClient } from '../../../types';
import { createInstantSearch } from '../../../../test/mock/createInstantSearch';
jest.mock('../isFacetRefined', () => jest.fn());
import isF... |
import { ShardClient } from '../client';
import { BaseCollection, emptyBaseCollection } from '../collections/basecollection';
import { BaseSet } from '../collections/baseset';
import {
DiscordKeys,
PresenceStatuses,
LOCAL_GUILD_ID,
} from '../constants';
import {
BaseStructure,
BaseStructureData,
} from './b... |
import { describe, expect, test } from 'vitest';
describe('animals', () => {
test('dogs say woof', () => {
const dog = { say: () => 'woof' };
expect(dog.say()).toBe('woof');
});
test.todo('figure out what rabbits say', () => {
const rabbit = { say: () => '????' };
expect(... |
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NotificationComponent } from './notification.component';
describe('NotificationComponent', () => {
const component: NotificationComponent;
const fixture: ComponentFixture<NotificationComponent>;
beforeEach(async(() => {
Test... |
import { Injectable } from '@angular/core';
import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree } from '@angular/router';
import { Observable } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class RequestTokenGuard implements CanActivate {
canActivate(
next: ActivatedRouteSnapsh... |
import { IsString, IsOptional } from 'class-validator';
export default class UpdateQuizRequestDTO {
@IsOptional()
@IsString()
public readonly question: string;
@IsOptional()
@IsString()
public readonly answer: string;
@IsOptional()
@IsString()
public readonly option1: string;
@IsOptional()
@Is... |
/**
* Convenience passthrough template tag to get the benefits of tooling for the gql template tag. This does not actually parse the input into a GraphQL DocumentNode like graphql-tag package does. It just returns the string with any variables given interpolated. Can save you a bit of performance and having to install... |
import {Workout} from './Workout';
export interface WorkoutPackage {
id: string;
authorId: string;
created: string;
workout: Workout;
} |
/*
* Copyright 2019 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... |
import React from "react"
import Button from "../button/Button"
import Notification from "./Notification"
interface IDemoProps {
type: "open" | "success" | "info" | "error" | "warning";
duration: number;
icon: string;
placement: "topLeft" | "topRight" | "bottomLeft" | "bottomRight"
}
export const Demo: React.... |
export { default } from './EditCvMetadataModal' |
import {
Service,
CharacteristicValue,
CharacteristicSetCallback,
CharacteristicGetCallback,
} from 'homebridge'
import { PilightAccessory, PilightDeviceUpdate } from './pilightAccessory'
/**
* Pilight Power Switch Accessory
*/
export class PowerSwitch extends PilightAccessory {
static readonly ON = 'on'
... |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... |
/*
* Lumeer: Modern Data Definition and Processing Platform
*
* Copyright (C) since 2017 Lumeer.io, s.r.o. and/or its affiliates.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either ... |
// Type definitions for React 16.0
// Project: http://facebook.github.io/react/
// Definitions by: Asana <https://asana.com>
// AssureSign <http://www.assuresign.com>
// Microsoft <https://microsoft.com>
// John Reilly <https://github.com/johnnyreilly>
// ... |
import { Injectable, Autowired } from '@opensumi/di';
import { Tree, ITreeNodeOrCompositeTreeNode, TreeNodeType } from '@opensumi/ide-components';
import { EditorFileGroup, EditorFile, EditorFileRoot, OpenedEditorData } from '../opened-editor-node.define';
import { WorkbenchEditorService, IEditorGroup, IResource, Resou... |
import _ from 'lodash';
import { getTicksOfScale, parseScale, checkDomainOfScale, getBandSizeOfAxis } from './ChartUtils';
import { findChildByType } from './ReactUtils';
import { Coordinate, AxisType } from './types';
/**
* Calculate the scale function, position, width, height of axes
* @param {Object} props L... |
import Logotype from "@components/Globals/Logotype";
import { NextPage } from "next";
interface PayGateway {
email: "";
cardInfo: {
number: 0;
expirationDate: "";
cvc: "";
};
nameOnCard: "";
}
const PayGateway: NextPage = () => {
return (
<div className="min-w-screen min-h-screen bg-gray-200... |
import Automizer from '../src/index';
test('create automizer instance', () => {
const automizer = new Automizer({
templateDir: `./pptx-templates`,
outputDir: `./pptx-output`,
});
expect(automizer).toBeInstanceOf(Automizer);
}); |
import validateJs from './js/index';
import validateHtml from './html/index';
import { getLocator, Location } from 'locate-character';
import getCodeFrame from '../utils/getCodeFrame';
import CompileError from '../utils/CompileError';
import Stylesheet from '../css/Stylesheet';
import { Node, Parsed, CompileOptions, Wa... |
/**
* @file TreasureChest 宝箱
* @author Auto Generated by IconPark
*/
/* tslint:disable: max-line-length */
/* eslint-disable max-len */
import React from 'react';
import {ISvgIconProps, IconWrapper} from '../runtime';
export default IconWrapper(
'treasure-chest',
false,
(props: ISvgIconProps) => (
... |
import postcss from 'postcss'
import type Processor from 'postcss/lib/processor'
import pluginCreator from '../src'
describe(`plugin`, () => {
let processor: Processor
beforeEach(() => {
processor = postcss([
pluginCreator({
metrics: {
'Test Mono': {
capHeight: 100,
... |
/**
* @license
* Copyright JINSCOP. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
selector: 'nb-card-colors',
changeDetection: ChangeDetectionStrategy.OnPus... |
export * from "https://deno.land/std@v0.34.0/io/readers.ts"; |
import {
Component,
Input,
EventEmitter,
Output,
} from '@angular/core'
import { FormDataService } from './form-data.service';
@Component({
moduleId: module.id,
selector:'treatment-component',
templateUrl:'treatment.component.html',
})
export class TreatmentComponent{
@Input() treatment:any;
@Input... |
import { NextFunction, Request, Response } from 'express'
import jwt from 'jsonwebtoken'
interface UserPayload {
id: string
email: string
}
declare global {
namespace Express {
interface Request {
currentuser?: UserPayload
}
}
}
export const currentuser = (
req: Request,
_res: Response,
n... |
import Scanner from "./scanner";
import { Logger } from "./logger";
export {
cwd,
from,
verify
}
declare function cwd(path: string, options?: Scanner.Options, logger?: Logger): Promise<Scanner.Payload>;
declare function from(packageName: string, options?: Scanner.Options, logger?: Logger): Promise<Scanner.Paylo... |
import Logger from "../src/utils/logger";
import { assert } from "chai";
let log: Logger;
describe("Logger tests", () => {
it("Create logger instance", (done) => {
log = new Logger({
name: "test",
level: Logger.Levels.debug,
});
assert(log);
done();
});
it("Print debug message", (don... |
import { MessageProcessor } from "../messageProcessor"
import { MessageResponse } from "../messageResponse/messageResponse"
import { MessageFormater } from "../messageFormater"
import { MessageResponseErrorToNotifyUser, MessageResponseErrorInternal } from '@/messageResponse/messageResponseError'
import { messageRequest... |
import { createDummyData } from '../helpers'
export const getRequestMock = createDummyData() |
/*
* 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 ... |
import express from "express";
import TokenData from "../authentication/TokenData";
import generateToken from "../authentication/TokenFactory";
import WrongCredentialsException from "../exception/WrongCredentialsException";
import User from "../models/User";
import {DaoContainer} from "../persistence/dao/Dao";
import C... |
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue';
import 'prismjs';
import 'prismjs/themes/prism.css';
import 'vue-prism-editor/dist/VuePrismEditor.css';
import 'vue-json-pretty/lib/styles.css';
import Vue2... |
/**
* 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... |
import { Injectable } from '@angular/core';
import { NbMenuItem } from '@nebular/theme';
@Injectable({
providedIn: 'root'
})
export class PagesMenuService {
constructor() { }
MENU_ITEMS: NbMenuItem[] = [
{
title: 'Dashboard',
icon: 'home-outline',
link: '/pages/dashboard',
home: tru... |
import {Injectable} from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class AuthService {
loggedIn = false;
logIn() {
this.loggedIn = true;
}
logOut() {
this.loggedIn = false;
}
isAdmin() {
const isUserAdmin = new Promise(
(resolve) => {
resolve(this.loggedIn)... |
import { GetLastElementOfNonEmptyArrayOperation } from "./getLastElementOfNonEmptyArray";
const GetLastElementOfNonEmptyArrayOperationLocalization__English:
GetLastElementOfNonEmptyArrayOperation.Localization =
{
elementNotFoundErrorMessage: "The array is empty so it has not last element.. As it follows... |
/*
* Copyright 2021 Mia srl
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... |
import React, { FunctionComponent } from "react";
import { Notification } from "@bitrise/bitkit";
type Props = {
message: string;
};
const ErrorNotification: FunctionComponent<Props> = ({ message }: Props) => (
<Notification type="alert">{message}</Notification>
);
export default ErrorNotification; |
import '../react-test-setup';
import type { IEvent, ICollectionChange } from '../../src/events';
import type { IReadOnlyObservableCollection } from '../../src/observable-collection';
import React from 'react';
import { render } from '@testing-library/react';
import { expect } from 'chai';
import { watchCollection } fro... |
type SideBarType = {}
let initialState = {}
export const sideBarReducer = (state: SideBarType = initialState, action: any) => {
return state
} |
import {
animate, animateChild, AnimationQueryOptions, group, keyframes, query, style, transition,
trigger
} from '@angular/animations';
const animationEasing = '200ms ease-out';
const footerAnimationTiming = 300;
const optionalAnimation: AnimationQueryOptions = { optional: true };
const percentageOut = 1;
c... |
import * as actions from './constants'
import { Employee } from '../typings'
import { PlanID, Amount } from './reducers'
export const fireEmployee = (employeeId: Employee['id'], planId: PlanID) => ({
type: actions.FIRE_EMPLOYEE as typeof actions.FIRE_EMPLOYEE,
employeeId,
planId
})
export type FireEmpl... |
export declare enum BrowserType {
Chrome = "Chrome",
Safari = "Safari",
Opera = "Opera",
FF = "FF",
Edge = "Edge",
IE11 = "IE11",
IE10 = "IE10",
IE9 = "IE9",
IE8 = "IE8",
IE7 = "IE7",
IEOld = "IE7\u4EE5\u4E0B"
}
/**
* @desc 获取当前浏览器的类型
*
* @returns ['Chrome'、"Safari"、"Opera... |
import { Injectable } from '@angular/core';
import { AaloggingService } from './aalogging.service';
import { JSONUtil } from '../autil/JSONUtil';
import { ObjectUtil } from '../autil/ObjectUtil';
import { NumberUtil } from '../autil/NumberUtil';
export enum JSONPathArrayType {//값을 부여하지 않으면 0,1..
ASTA="ASTA",//[*]
... |
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
ABOUT THIS NODE.JS EXAMPLE: This example works with AWS SDK for JavaScript version 3 (v3),
which is available at https://github.com/aws/aws-sdk-js-v3. This example is in the 'AWS SDK for JavaScript v3 Developer Gu... |
export * from './config.util'
export * from './consts.util'
export * from './objs.util' |
import { LensApiRequest } from "../router"
import { LensApi } from "../lens-api"
import { spawn, ChildProcessWithoutNullStreams } from "child_process"
import { bundledKubectl } from "../kubectl"
import { getFreePort } from "../port"
import { shell } from "electron"
import * as tcpPortUsed from "tcp-port-used"
import lo... |
import { Document, Schema } from 'mongoose';
import { Op, Statistic } from '../enums';
export declare namespace IAchievementNS {
interface MetaShape {
isActive: boolean;
expiration: Date;
isHidden: boolean;
continueRouting: boolean;
}
interface BadgeShape {
title: str... |
import { BaseRouteComponent, RouteResolver } from '../../../_common/route/route-component';
import { User } from '../../../_common/user/user.model';
import { CreateElement } from 'vue';
import { Component } from 'vue-property-decorator';
@Component({
name: 'RouteLibrary',
})
@RouteResolver({
deps: {},
// Make sure ... |
import { User } from './../../user/user.entity';
import { Type } from 'class-transformer';
import { IsNotEmpty, IsNumber, IsString, IsOptional, IsDate, IsInt, isDecimal, IsDecimal, IsBoolean, IsNumberString, isBooleanString, IsBooleanString } from 'class-validator';
import { Event } from 'src/event/event.entity';
expo... |
// SPDX-FileCopyrightText: 2022 Dusan Mijatovic (dv4all)
// SPDX-FileCopyrightText: 2022 dv4all
//
// SPDX-License-Identifier: Apache-2.0
import {useContext} from 'react'
import {Session} from '~/auth'
import EditSection from '~/components/layout/EditSection'
import EditMentionsProvider from './EditMentionsProvider'
... |
import { HttpClient } from "@angular/common/http"
import { Closed } from "src/app/core/utils/closed"
import { Loader } from "src/app/core/utils/loader"
import { SharedResponse, SharedState } from './load_state'
export interface Error {
id: string
err: any
}
const DefaultValue: any = {}
export class State {
... |
export interface SVGIconProps {
size?: number | string
onClick?: () => void
color?: string
} |
import {
useEffect, useMemo, useRef, useState,
} from 'react';
interface Timer {
increase(s: number): void;
start(): void;
stop(): void;
reset(): void;
}
export function useTimer(max: number) {
const [seconds, setSeconds] = useState(max);
const timerHandle = useRef(0);
const timer = useMemo<Timer>(() ... |
import {Component, OnInit} from '@angular/core';
declare var miniAngularBridge: MiniAngularBridge;
@Component({
selector: 'mini-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit{
title = 'miniAngularClient';
miniAngularBridge: Min... |
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
import { QuestionImpl } from '../domain-model/impl/question-impl';
import { OnInit, Component } from '@angular/core';
import { CalculedQuestionImpl } from '../domain-model/impl/calculed-question-impl';
import { AlternativeImpl } from '../domain-model/impl/alt... |
import React from 'react';
import { Switch } from 'react-router-dom';
import SignIn from '../pages/Signin';
import SignUp from '../pages/SignUp';
import Dashboard from '../pages/Dashboard';
import ForgotPassword from '../pages/ForgotPassword';
import ResetPassword from '../pages/ResetPassword';
import Route from './Rou... |
import * as React from "react";
declare const ClrFish: React.SFC;
export default ClrFish; |
/**
* @file Aviation 航空
* @author Auto Generated by IconPark
*/
/* tslint:disable: max-line-length */
/* eslint-disable max-len */
import {ISvgIconProps, IconWrapper} from '../runtime';
export default IconWrapper(
'aviation',
true,
(props: ISvgIconProps) => (
<svg
width={props.size}... |
// *** 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! ***
import * as pulumi from "@pulumi/pulumi";
import { input as inputs, output as outputs, enums } from "../../types";
import * as utilities from "../../utilities";
/*... |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import { Middleware, NextFunction } from "@feathersjs/hooks/lib";
import { err, FxError, Inputs, ok, ProjectSettings, Result, v2, v3 } from "@microsoft/teamsfx-api";
import { newEnvInfoV3 } from "..";
import { CoreHookContext } from "../..";
im... |
import * as React from "react";
import { Checkbox, DefaultButton, keyframes, mergeStyleSets, PrimaryButton, Stack } from "@fluentui/react";
import { useForm, Controller } from "react-hook-form";
import { TargetDropzoneTextField, TargetFolderTextField, TargetServerTextField } from "../Fields";
import * as FileSpray from... |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... |
/**
* @file DoneAll 完成全部
* @author Auto Generated by IconPark
*/
/* tslint:disable: max-line-length */
/* eslint-disable max-len */
import React from 'react';
import {ISvgIconProps, IconWrapper} from '../runtime';
export default IconWrapper(
'done-all',
true,
(props: ISvgIconProps) => (
<svg
... |
export interface IExecutor {
execute(params: Object): void;
}
export interface IExecutionContext {executor: IExecutor; config: any }; |
// This file implements the client side of the proposed inlay hints
// extension to LSP. The proposal is based on the one at
// https://github.com/microsoft/language-server-protocol/issues/956,
// with some modifications that reflect discussions in that issue.
// The feature allows the server to provide the client with... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.