text stringlengths 10 953k |
|---|
import { FC, memo, useEffect } from 'react'
import cn from 'classnames'
import s from './Searchbar.module.css'
import { useRouter } from 'next/router'
interface Props {
className?: string
id?: string
}
const Searchbar: FC<Props> = ({ className, id = 'search' }) => {
const router = useRouter()
useEffect(() =>... |
import {Utils} from '../lib';
import {BasicEffect, toID} from './dex-data';
/**
* Describes the acceptable target(s) of a move.
* adjacentAlly - Only relevant to Doubles or Triples, the move only targets an ally of the user.
* adjacentAllyOrSelf - The move can target the user or its ally.
* adjacentFoe - The move ... |
import { ElDocument } from '@/document'
import { DocumentAttribute } from '@/document'
export const attributes: DocumentAttribute[] = [
{
name: 'label',
description: '选中状态的值(只有在`checkbox-group`或者绑定对象类型为`array`时有效)',
type: 'string / number / boolean',
value: '—',
default: '—'
},
{
name: 't... |
import React, { useState, useEffect } from 'react';
import { View, Text } from 'react-native';
interface Props {
name: string;
}
const Test = (props: Props): JSX.Element => {
const [name, setName] = useState<String>(props.name);
useEffect(() => {
setName('name');
}, []);
return (
<View>
<Text... |
/*
* Copyright 2021 Bundesrepublik Deutschland
*
* 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 la... |
import { NavbarPage } from "../../page/navbar/navbar.po";
import { AppPage } from "../../app.po";
import { ListarUsuarios } from "../../page/usuario/listar-usuarios.po";
describe("Listar usuarios", () => {
let page: AppPage;
let navBar: NavbarPage;
let listarUsuarios: ListarUsuarios;
beforeEach(() => {
p... |
import { TestBed, async } from '@angular/core/testing';
import { AppComponent } from './app.component';
describe('AppComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
AppComponent
],
}).compileComponents();
}));
it('should create the app', ... |
/*
* Copyright 2020 IBM Corporation
*
* 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 ... |
// (C) Copyright 2015 Moodle Pty Ltd.
//
// 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 agree... |
/* eslint-disable import/prefer-default-export, import/no-cycle, @typescript-eslint/naming-convention */
export type IGuidanceResponseStatus = string;
/* eslint-enable import/prefer-default-export, import/no-cycle, @typescript-eslint/naming-convention */ |
import Dashboard from 'pages/Dashboard';
import Home from 'pages/Home';
import {BrowserRouter, Route, Switch} from 'react-router-dom';
function Routes() {
return (
<BrowserRouter>
<Switch>
<Route path="/" exact>
<Home />
</Route>
... |
import * as Bluebird from 'bluebird'
import { EntityManager } from 'typeorm'
import { get, min, compact, chunk, mapValues, keyBy } from 'lodash'
import { BlockEntity, TxEntity, AccountTxEntity } from 'orm'
import config from 'config'
import * as lcd from 'lib/lcd'
import { collectorLogger as logger } from 'lib/logger... |
import * as THREE from 'three';
import Stats from 'three/examples/js/libs/stats.min';
import Context from 'scene/Context';
import ObjectRenderer from 'scene/ObjectRenderer';
export default class HelperRenderer implements ObjectRenderer {
private stats: Stats;
public init(context: Context): void {
// Stats pl... |
import { resolve, relative } from 'path';
import { formatJson, unixEOL } from '@sap-cloud-sdk/util';
import { apiDocsDir, transformFile, version } from './util';
function updateRootPackageJson() {
transformFile(resolve('package.json'), packageJson =>
formatJson({
...JSON.parse(packageJson),
version: ... |
/**
@module @ember/object
*/
import { assert } from '@ember/debug';
import { assign } from '@ember/polyfills';
import { DEBUG } from '@glimmer/env';
import { ENV } from 'ember-environment';
import { descriptorFor, Meta, meta as metaFor, peekMeta } from 'ember-meta';
import {
getListeners,
getObservers,
guidFor,
... |
export default {
dataField: 'data',
} |
/*
Copyright 2016 kanreisa
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 writin... |
export enum View3DUpVector {
X = 'X',
Y = 'Y',
Z = 'Z'
}
export const View3DUpVectors: View3DUpVector[] = [
View3DUpVector.X, View3DUpVector.Y, View3DUpVector.Z
] |
import React from "react";
interface Props {
title: string;
onClose?: () => void;
}
const TitleBar = ({ title, onClose }: Props): JSX.Element => (
<div className="flex p-2 pl-3 justify-between items-center gap-4">
<span className="overflow-hidden overflow-ellipsis whitespace-nowrap">
{title}
</spa... |
/**
* Copyright (c) Microsoft Corporation.
*
* 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 agr... |
// tslint:disable: variable-name
import {
RenderingContext2D
} from '../types';
import Property from '../Property';
import Transform from '../Transform';
import RenderedElement from './RenderedElement';
import PathElement from './PathElement';
import SVGElement from './SVGElement';
export default class UseElement ext... |
import {
GetFileScmInfoRequestType,
GetFileScmInfoResponse,
GetRepoScmStatusRequestType,
GetRepoScmStatusResponse,
GetReposScmRequestType,
AddIgnoreFilesRequestType,
IgnoreFilesRequestType,
ReposScm,
DidChangeDataNotificationType,
ChangeDataType,
UpdateReviewResponse,
CodemarkPlus,
TelemetryRequestType,
U... |
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React from 'react';
import {ActionResult} from 'mattermost-redux/types/actions';
import {UserProfile} from 'mattermost-redux/types/users';
import {TeamMembership, TeamStats, GetTeamMembersOpts} from ... |
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { FileOperator, Rule, Source } from '../engine/interface';
import { FilePredicate, MergeStrategy, Tree } from '... |
/// <reference types="node" />
import { Fido2DeviceCli } from "../fido2/fido2-device-cli";
import { Payload } from "../transports/transport";
import { IClientPinCli, IPinUvAuthProtocol } from "./client-pin";
import { Fido2Assertion } from "./cmd/get-assertion";
import { Options } from "./cmd/get-info";
import { Fido2Cr... |
let foo2: { bar: { baz: string } } | undefined;
console.log(foo2?.bar.baz); |
import { ModifierNode } from './modifier.js';
import { Node } from './node.js';
export class SelectNode extends Node {
public msSQLLimitNode?: ModifierNode;
public isDistinct: boolean;
constructor() {
super('SELECT');
// used when processing LIMIT clauses in MSSQL
this.msSQLLimitNod... |
import axios from 'axios';
import { QueryClient, useMutation, useQueryClient } from 'react-query';
import { Project } from '../../models/project';
export interface IChanges {
name?: string;
color?: string;
}
async function editProject(id: string, changes: IChanges) {
const { origin } = window.location;
const... |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... |
export { Node, Parser } from "commonmark"; |
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
import { Command as $Command } from "@aws-sdk/smithy-client";
import {
FinalizeHandlerArguments,
Handler,
HandlerExecutionContext,
HttpHandlerOptions... |
import { Tree } from '@angular-devkit/schematics';
import {
SchematicTestRunner,
UnitTestTree,
} from '@angular-devkit/schematics/testing';
async function createTestProject(
runner: SchematicTestRunner,
projectType: 'application' | 'library',
appOptions = {},
tree?: Tree
): Promise<UnitTestTree> {
return... |
import { PostgresTable } from '@supabase/postgres-meta'
import { Typography } from '@supabase/ui'
interface Props {
schema: string
table: PostgresTable
isDuplicating: boolean
}
const HeaderTitle: React.FC<Props> = ({ schema, table, isDuplicating }) => {
if (!table) {
return (
<>
Create a new... |
import { R4_1_Address } from './R4_1_Address'
import { R4_1_Annotation } from './R4_1_Annotation'
import { R4_1_Attachment } from './R4_1_Attachment'
import { R4_1_BackboneElement } from './R4_1_BackboneElement'
import { R4_1_CodeableConcept } from './R4_1_CodeableConcept'
import { R4_1_Coding } from './R4_1_Coding'
im... |
import { Paginator } from "@aws-sdk/types";
import {
ListNotificationsCommand,
ListNotificationsCommandInput,
ListNotificationsCommandOutput,
} from "../commands/ListNotificationsCommand";
import { WellArchitected } from "../WellArchitected";
import { WellArchitectedClient } from "../WellArchitectedClient";
impo... |
import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { AngularFireAuthModule } from 'angularfire2/auth';
import { SignupComponent } from './signup/signup.component';
import { LoginComponent } from './login/login.component';
import { SharedModule } from '../shared/share... |
import { RefObject } from 'react';
// Enter game code to join game
export const enterGameCode = (
gameCodeI: RefObject<HTMLInputElement> | null,
enterGameB: RefObject<HTMLButtonElement> | null,
// eslint-disable-next-line no-unused-vars
createJoinGame: (arrRef: any[], type: string | null) => void,
errorMessa... |
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent {
navbarCollapsed = true;
get showTestCases() {
return localStorage.getItem('showTestCases') === 'true';
}
} |
import { Readable, TransformOptions } from 'stream';
import { generateChecksumFromStream } from './checksum';
/**
* Validate expected checksum against calculated checksum
*
* @param {string} algorithm - Checksum algorithm
* @param {stream.Readable} stream - A readable file stream
* @param {number|string} expected... |
import { Upload } from '@/containers';
import _ from 'lodash';
import React from 'react';
class SaveUpload extends Upload {
public renderRendering() {
let { value } = this.props;
if (_.isString(value)) {
value = [
{
id: value,
name: value,
uid: value,
},
... |
import { HttpException } from '@nestjs/common';
import { ApiProperty } from '@nestjs/swagger';
import {
Length,
IsString,
IsBoolean
} from 'class-validator';
import { Transform } from 'class-transformer';
export class SetAccountTypeDTO {
@ApiProperty({
type: String,
required: true
})
@Length(2, 32)... |
import { StyleSheet } from 'react-native';
import { FONTS } from '../../theme';
export const styles = StyleSheet.create({
button: {
height: 48,
width: '100%',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center'
},
title: {
fontSize: 14,
fontFamily: FONTS.BOLD
}... |
import React from 'react';
import {Tab, Tabs, TabSize} from 'newskit';
import {Table} from '../table';
import {ComponentTabsWithTableProps} from './types';
import {ContentSecondary, ContentTertiary} from '../content-structure';
export const TabsWithTable: React.FC<ComponentTabsWithTableProps> = ({
components,
show... |
import * as __aws_sdk_middleware_stack from "@aws-sdk/middleware-stack";
import * as __aws_sdk_types from "@aws-sdk/types";
import * as _stream from "stream";
import { EnableAWSOrganizationsAccess } from "../model/operations/EnableAWSOrganizationsAccess";
import { InputTypesUnion } from "../types/InputTypesUnion";
impo... |
import React from "react";
export default function (props: { color: string }) {
const { color } = props;
return (
<svg
style={{
position: "absolute",
width: "16%",
height: "15%",
top: "13%",
left: "19.8%"
}}
width="48"
height="48"
viewBox="0... |
/* eslint-disable import/prefer-default-export, import/no-cycle */
import {
Extension,
FhirField,
IMoneyQuantity,
PrimitiveCode,
PrimitiveDecimal,
PrimitiveString,
PrimitiveUri,
Quantity,
QuantityComparator,
FhirType
} from "../internal";
@FhirType("MoneyQuantity", "Quantity")
export class MoneyQua... |
// Type definitions for argon2-browser 1.6
// Project: https://github.com/antelle/argon2-browser#readme
// Definitions by: Ivan Gabriele <https://github.com/ivangabriele>
// Brendan Early <https://github.com/mymindstorm>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Ve... |
import { WebDriver } from "selenium-webdriver";
import VerifyUrlIs from "../assertions/VerifyUrlIs";
import VisitPage from "../VisitPage";
export default async function(driver: WebDriver, url: string, timeout: number = 5000) {
await VisitPage(driver, url);
await VerifyUrlIs(driver, url, timeout);
} |
export declare const LoadingIcon: (props: any) => JSX.Element; |
import type { Readable, Writable } from "svelte/store"
export type MixedWritable<R, W> = Pick<Readable<R>, "subscribe"> & Pick<Writable<W>, "set"> |
<TS language="bg" version="2.0">
<context>
<name>AddressBookPage</name>
<message>
<source>Right-click to edit address or label</source>
<translation>Десен клик за промяна на адреса или името</translation>
</message>
<message>
<source>Create a new address</source>
<transla... |
/**
*
*
* OpenAPI spec version: 20200606
*
*
* 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 under the Universal Permissive License (UPL) 1.0 ... |
/// <reference types="react" />
import cytoscape from "cytoscape";
import { Store } from "n3";
interface GraphProps {
store: Store;
graph: string;
focus: string | null;
context?: {};
onSelect?(focus: string): void;
onUnselect?(focus: string): void;
onMouseOver?(focus: string): void;
onMo... |
/**
* @license
* Copyright 2013 Palantir Technologies, Inc.
*
* 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... |
import { useEffect } from 'react';
import Router from 'next/router';
import nextCookie from 'next-cookies';
import cookie from 'js-cookie';
import { useDispatch } from 'react-redux';
import { AuthTypes } from '../store/ducks/auth/types';
export const login = ({ token, ...userInfo }) => {
cookie.set('token', token, {... |
import { Characters } from "../data/Characters";
import { Board, Boards } from "../data/Boards";
import { License, Quickenings, Espers } from "../data/Licenses";
import { PriorityQueue } from "dz-priority-queue";
export enum Coloring {
/** character has the license learned */
OBTAINED,
/** can be reached from obtai... |
import { pullAll } from '@s-libs/micro-dash';
console.log(pullAll([1], [1])); |
/* eslint-disable */
import { messageTypeRegistry } from "../../../../../typeRegistry";
import Long from "long";
import _m0 from "protobufjs/minimal";
export const protobufPackage = "yandex.cloud.mdb.mysql.v1alpha";
/** A MySQL user. For more information, see the [documentation](/docs/managed-mysql/concepts). */
expo... |
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { MongooseModule } from '@nestjs/mongoose'
import { TodoModule } from './todo/todo.module';
@Module({
imports: [MongooseModule.forRoot('mongodb+srv://Vlad:hulk22.ro@clusteribm... |
import { Directive } from '@angular/core';
@Directive({
selector: '[appPostScalarDatabinder]'
})
export class PostScalarDatabinderDirective {
constructor() { }
} |
/*
* Copyright (c) 2008-2018, Hazelcast, 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 ... |
import React from 'react'
import styled from 'styled-components'
import Paper from '@material-ui/core/Paper'
const MenuDropdown = styled.div`
display: none;
position: absolute;
top: 5rem;
z-index: 1;
padding: 1rem;
`
const MenuContainer = styled.div`
height: 100%;
position: relative;
&:hover {
& ... |
const theme: string = `{
--deckgo-highlight-code-carbon-background: #002b36;
--deckgo-highlight-code-carbon-color: rgb(131, 148, 150);
--deckgo-highlight-code-token-atrule: #cb4b16;
--deckgo-highlight-code-token-comment: #586e75;
--deckgo-highlight-code-token-comment-rgb: 88, 110, 117;
--deckgo-highlight-co... |
export { default } from "./CircularProgress"; |
import {
Component, ContentChild, ContentChildren, ViewChildren, ViewChild,
QueryList, Input, Output, EventEmitter, ElementRef, ViewEncapsulation
} from '@angular/core';
import { PerfectScrollbarComponent, PerfectScrollbarDirective } from 'ngx-perfect-scrollbar';
import { naturalSort, debounce } from '../util';
i... |
import { NodeEvaluator } from ".";
import { CONCATENATE_TYPE, Concatenate } from "../../Contract/Expression";
import { NodeShapeError } from "./Exception";
import Node from "../Node";
export default class ConcatenateNodeEvaluator implements NodeEvaluator {
public evaluate(node: Node, context: object) {
const data :... |
import React from 'react'
import { MisalignedSemicircle as originIcon } from '@icon-park/svg'
import { IIconProps } from '@icon-park/svg/lib/runtime'
import svg64 from 'svg64'
const MisalignedSemicircle = (props: IIconProps) => {
const base64Data = svg64(originIcon(props))
//@ts-ignore next-line
return <im... |
import { IVariableCollection } from "pip-services3-expressions-node";
import { IVariable } from "pip-services3-expressions-node";
import { AnyValueMap } from "pip-services3-commons-node";
/**
* Fact collection combines fact variables with rule parameters
* that are exposed as variables.
*/
export declare class FactC... |
import { Store } from '../config/store';
/**
* Find available workflow commands
* @returns commandList
*/
export const getCommandList = (): Record<string, Command[]> => {
const store = Store.getInstance();
return store.getCommands();
}; |
import { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient";
import {
DeleteConfigurationSetEventDestinationRequest,
DeleteConfigurationSetEventDestinationResponse,
} from "../models/models_0";
import {
deserializeAws_restJson1DeleteConfigurationSetEvent... |
import {
IDisplayMessage,
IDisplayMessageAction,
MessageSeverity,
} from './types';
import {
generateId,
} from './util';
type HandleFunction = (message: IDisplayMessage) => void;
export default class MessageHelper {
private static instance: MessageHelper;
private readonly functions: HandleFunction[];
... |
import React, { Component } from 'react';
export default class App extends Component {
public render() {
return (<div>
<h1>Hello from React, Webpack! And SSR</h1>
</div>);
}
} |
version https://git-lfs.github.com/spec/v1
oid sha256:929d7f54224e6fafae40f3124fc3f009bcd191044b75e7d33ff6b9ef4555ff73
size 335204 |
import { TestBed, getTestBed } from '@angular/core/testing';
import { MatSnackBarModule } from '@angular/material/snack-bar';
import { MatSnackBar } from '@angular/material/snack-bar';
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
import { AlertService } from './alert.service';
describe(... |
/**
* Controller action properties.
*/
export interface Action {
/**
* Action Request object.
*/
request: any;
/**
* Action Response object.
*/
response: any;
/**
* Content in which action is executed.
* Koa-specific property.
*/
context?: any;
/**
... |
export class Complex {
constructor(_name: string, _container: string, _subjectId: number) {
this.name = _name;
this.container = _container;
this.subjectId = _subjectId;
}
name?: string;
container?: string;
subjectId?: number;
isPublished?: boolean;
includeLabs?: boolean;
includeLectures?... |
// Copyright 2018 The Outline Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... |
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faCircleInfo } from "@fortawesome/free-solid-svg-icons";
interface IProps {
content: string;
}
export default function TextFieldDescription({ content }: IProps) {
return (
<p className="flex items-center">
<span className="text-g... |
export * from './TodoStore'
export * from './RouterStore'
export * from './createStore' |
import { Component, OnInit } from '@angular/core';
import { AuthService } from './../../../services/auth.service';
import { Router } from '@angular/router';
@Component({
selector: 'navbar',
templateUrl: './navbar.component.html',
styleUrls: ['./navbar.component.css']
})
export class NavbarComponent implements On... |
import { assertEquals, test } from "../deps.ts";
import { Util } from "../src/Util.ts";
import { Command } from "../src/Command.ts";
import { OnCommand } from "../src/types.ts";
test("find_command_from_args", function () {
const commands: Array<Command> = [];
const arg = "--help";
commands.push(
new Command... |
/**
* Module dependencies.
*/
import * as express from "express";
import * as compression from "compression"; // compresses requests
import * as session from "express-session";
import * as bodyParser from "body-parser";
import * as logger from "morgan";
import * as errorHandler from "errorhandler";
import * as lusca... |
import { customElement, LitElement, html, css, property } from 'lit-element';
import { BreweryItem } from './types';
import './BreweryCard';
import './CityInput';
@customElement('breweries-element')
export class Breweries extends LitElement {
static get styles() {
return css`
.container {
backgroun... |
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
import { Command as $Command } from "@aws-sdk/smithy-client";
import {
FinalizeHandlerArguments,
Handler,
HandlerExecutionContext,
HttpHandlerOptions... |
/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
import * as fs from 'fs';
import * as util from 'util';
import Dap from '../dap/api';
import { FsPromises } from '../ioc-extras';
export... |
import { Component, OnInit, Input, ViewEncapsulation } from '@angular/core';
import { TabRoute } from '../../models/tabs/tab-route';
import { ActivatedRoute } from '@angular/router';
import { takeUntil } from 'rxjs/operators';
import { BaseComponent } from '@core/components/base/base.component';
@Component({
selecto... |
import type {Logger} from "lines-logger";
import type {
DefaultInMessage,
HandlerName,
HandlerType,
HandlerTypes,
IMessageHandler,
} from "@/ts/types/messages/baseMessagesInterfaces";
export default abstract class MessageHandler implements IMessageHandler {
protected abstract readonly logger: Logger;
p... |
import express from 'express';
import cors from 'cors';
import path from 'path';
import routes from './routes';
import dotenv from 'dotenv';
dotenv.config();
const app = express();
app.use(cors());
app.use(express.json());
app.use(routes);
app.use('/uploads', express.static(path.resolve(__dirname, '..', 'uploads'))... |
/*
* Public API Surface of ngx-validate-helper
*/
export * from './lib/directives/validatable/validatable.directive';
export * from './lib/ngx-validate-helper.module'; |
import { Assert, UnitTest } from '@ephox/bedrock-client';
import { document } from '@ephox/dom-globals';
import { KAssert } from '@ephox/katamari-assertions';
import Element from 'ephox/sugar/api/node/Element';
import * as Node from 'ephox/sugar/api/node/Node';
import NodeValue from 'ephox/sugar/impl/NodeValue';
UnitT... |
import Uri from '../Uri'
export default interface UriBuilderConfigurationInterface
{
baseUri?: Uri | string | null
mergeQuery?: boolean
defaultScheme?: 'http' | 'https' | null
overrideScheme?: 'http' | 'https' | null
}; |
// smithy-typescript generated code
import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolver";
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";
const regionHash: RegionHash = {};
const partitionHash: PartitionHash = {
aws: {
regions: [
"af-south-1",... |
/** @jsx jsx */
import { css, jsx } from "@emotion/core"
import { Skill } from "./types"
const resumeSkillStyles = css`
margin-top: 8px;
p {
margin: 0px;
}
`
export default function ResumeSkillItem({
skill: { type, list },
}: {
skill: Skill
}) {
return (
<li css={resumeSkillStyles}>
<p>
... |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... |
import { Migration } from '@simonbackx/simple-database';
import { GroupCategory, OrganizationTypeHelper } from '@stamhoofd/structures';
import { Group } from '../models/Group';
import { Organization } from '../models/Organization';
import { Group as GroupStruct } from "@stamhoofd/structures";
export default new Migrat... |
import * as axios from "axios";
export declare class TenderlyApiService {
static configureInstance(): axios.AxiosInstance;
static configureAnonymousInstance(): axios.AxiosInstance;
static isAuthenticated(): boolean;
private static getTenderlyConfig;
}
//# sourceMappingURL=TenderlyApiService.d.ts.map |
import * as React from 'react';
const SvgSorting = (props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) => (
<svg
width="1em"
height="1em"
fill="currentColor"
viewBox="0 0 1024 1024"
xmlns="http://www.w3.org/2000/svg"
ref={svgRef}
{...props}
>
<path d="M273.067 ... |
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { BoMontosComponent } from './bo-montos.component';
describe('BoMontosComponent', () => {
let component: BoMontosComponent;
let fixture: ComponentFixture<BoMontosComponent>;
beforeEach(async(() => {
TestBed.configureTestingMod... |
import { CollectionCache, CollectionKey } from "../../../common";
import { AudioBattleEnvironmentWeathers } from "./AudioBattleEnvironmentWeathers";
import { AudioBattleEnvironmentTypes } from "./AudioBattleEnvironmentTypes";
import { AudioBattleEnvironmentLoops } from "./AudioBattleEnvironmentLoops";
export declare na... |
import {AppComponent} from './app.component';
import {AppModule} from './app.module';
import {NgModule} from '@angular/core';
import {ServerModule, ServerTransferStateModule} from '@angular/platform-server';
import {ModuleMapLoaderModule} from '@nguniversal/module-map-ngfactory-loader';
import {BrowserModule} from '@an... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.