text stringlengths 10 953k |
|---|
import React from 'react';
import { Trans } from '@lingui/macro';
import { useSelector } from 'react-redux';
import { Typography } from '@material-ui/core';
import { Link, Table, Card } from '@staidelta/core';
import type { RootState } from '../../modules/rootReducer';
import type { Row } from '../core/components/Table... |
import { launch } from 'puppeteer'
/**
* Gets the CDN URL of a YouTube
*
* @param youTubeLink The YouTube link
* @returns The CDN URL
*/
export default async (youTubeLink: string): Promise<string> => {
const browser = await launch({ headless: true, args: ['--no-sandbox'] });
const page = await browser.ne... |
/*******************************************************************************
* Copyright 2017 Cognizant Technology Solutions
*
* 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
*
* ... |
import { assert, unreachable } from '../../../../../common/util/util.js';
import { EncodableTextureFormat, kTextureFormatInfo } from '../../../../capability_info.js';
import { virtualMipSize } from '../../../../util/texture/base.js';
import {
kTexelRepresentationInfo,
getSingleDataType,
getComponentReadbackTraits... |
/*! @license Firebase v3.6.9
Build: 3.6.9-rc.1
Terms: https://firebase.google.com/terms/ */
declare namespace firebase {
interface FirebaseError {
code: string;
message: string;
name: string;
stack: string;
}
class Promise<T> extends Promise_Instance<T> {
static all(values: firebase.P... |
import { combineReducers } from "redux";
import { user } from "./userReducer";
import products from "./productReducer";
import orders from "./orderReducer";
import wishlist from "./wishlistReducer";
import cart from "./cartReducer";
import addresses from "./addressReducer";
import alert from "./alertReducer";
import {... |
import type { FileSystem } from '@aries-framework/core'
import fs, { promises } from 'fs'
import http from 'http'
import https from 'https'
import { tmpdir } from 'os'
import { dirname } from 'path'
const { access, readFile, writeFile } = promises
export class NodeFileSystem implements FileSystem {
public readonly... |
import { MongoInvalidArgumentError } from './error.ts';
/** @internal */
const kPromise = Symbol('promise');
interface PromiseStore {
[kPromise]?: PromiseConstructor;
}
const store: PromiseStore = {
[kPromise]: undefined
};
/**
* Global promise store allowing user-provided promises
* @public
*/
export class ... |
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faPlus } from '@fortawesome/free-solid-svg-icons'
import React, { Component } from 'react';
// import summaryMap from './summary.json';
import pkg from '../../package.json'
export default class Footer extends Component<any, any> {
appConf... |
import '@island.is/api/mocks'
import React from 'react'
import ReactDOM from 'react-dom'
import * as Sentry from '@sentry/react'
import { Integrations } from '@sentry/tracing'
import './auth'
import { environment } from './environments'
import App from './app/App'
Sentry.init({
dsn: environment.sentry.dsn,
integr... |
import React, { FunctionComponent } from 'react';
import { List, ListItem } from '@material-ui/core';
import { TodoListProps } from './TodoList.model';
const TodoList: FunctionComponent<TodoListProps> = ({ todos }) => (
<List>
{
todos.map(({ id, text }) => <ListItem key={id}>{text}</ListItem>)
}
</... |
/* GENERATED FILE */
import * as React from 'react';
import Svg, { Rect, Path, Line } from 'react-native-svg';
import { IconProps } from '../lib';
function HourglassHigh(props: IconProps) {
return (
<Svg
id="Raw"
viewBox="0 0 256 256"
width={props.size}
height={props.size}
fill={pr... |
import { decode_character_references } from '../utils/html';
import { Parser } from '../index';
export default function text(parser: Parser) {
const start = parser.index;
let data = '';
while (
parser.index < parser.template.length &&
!parser.match('<') &&
!parser.match('{')
) {
data += parser.template[p... |
import { lazy, Suspense } from "react";
import { Typography } from "@mui/material";
import MultiSelect from "@rowy/multiselect";
import FieldSkeleton from "components/SideDrawer/Form/FieldSkeleton";
import { FieldType } from "constants/fields";
import FieldsDropdown from "components/Table/ColumnMenu/FieldsDropdown";
im... |
declare module '*.svg' {
import * as React from 'react';
export const ReactComponent: React.FunctionComponent<
React.SVGProps<SVGSVGElement>
>;
const src: string;
export default src;
} |
import { Injectable } from '@angular/core';
import { ParseService } from './parse.service';
import * as Parse from 'parse';
import { HttpClient } from '@angular/common/http';
import { environment } from '../../../environments/environment';
@Injectable()
export class TourService {
dataUpdate: Array<any> = [];
... |
const snapshot = require('snap-shot-it')
import { SpawnOptions } from 'child_process'
import { expect } from './spec_helper'
require('mocha-banner').register()
const chalk = require('chalk').default
const _ = require('lodash')
let cp = require('child_process')
const path = require('path')
const http = require('http')... |
import YieldValue from '../YieldValue';
import { expect } from 'chai';
describe('YieldValue', (): void => {
it('should default to a value of `0` and an empty provider', (): void => {
const testYieldValue: YieldValue = new YieldValue(0);
expect(testYieldValue.provider()).to.eql('');
});
it('should inher... |
import Avatar from './avatar'
import DateFormater from './date-formatter'
import CoverImage from './cover-image'
import Link from 'next/link'
import Author from '../types/author'
type Props = {
title: string
coverImage: string
date: string
excerpt: string
author: Author
slug: string
}
const PostPreview = ... |
import { ApiVersions } from '../twitch'
import { FetchOptions } from '../utils/fetch'
import { LoggerOptions } from '../utils/logger'
export type ApiOptions = {
clientId?: string
token?: string
log?: LoggerOptions
onAuthenticationFailure?: () => Promise<string>
}
export enum ApiReadyStates {
'NOT_READY',
... |
/**
* router.ts
* Copyright(c) 2021 Aaron Hedges <aaron@dashron.com>
* MIT Licensed
*
*/
/// <reference types="node" />
import { URL } from 'url';
import uriTemplate = require('uri-templates');
import { SchemaProperties } from './objectValidator';
import Resource from '../Resource/resource';
import { Context, Midd... |
// SPDX-FileCopyrightText: Facebook, Inc. and its affiliates
// SPDX-FileCopyrightText: TNG Technology Consulting GmbH <https://www.tngtech.com>
//
// SPDX-License-Identifier: Apache-2.0
import each from 'jest-each';
import {
Attributions,
PackageInfo,
ResourcesToAttributions,
} from '../../../shared/shared-type... |
export * from './aws-xray'; |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... |
<?xml version="1.0" ?><!DOCTYPE TS><TS language="sv" version="2.1">
<context>
<name>AboutDialog</name>
<message>
<location filename="../forms/aboutdialog.ui" line="+14"/>
<source>About KETOsis</source>
<translation>Vad du behöver veta om KETOsis</translation>
</message>
<message>... |
export interface CounterProps {
value: number;
label: string;
} |
enum Compaction {
AUTO,
TEXT,
BYTE,
NUMERIC,
}
export default Compaction; |
import * as path from "path";
import * as os from "os";
import * as fs from "fs";
import * as inquirer from "inquirer";
import * as dash from "rethinkdbdash";
import chalk from "chalk";
import * as repl from "./commands/repl";
import * as seed from "./commands/seed";
type GlobalOptions = {
host?: string;
port?: ... |
export type BundleType = 'babel';
interface IBundleTypeOutput {
type: BundleType;
}
export interface ICjs extends IBundleTypeOutput {
// TODO
// minify?: boolean;
// lazy?: boolean;
}
export interface IEsm extends IBundleTypeOutput {
// TODO
// mjs?: boolean;
// minify?: boolean;
importLibToEs?: bool... |
<TS language="fr_FR" version="2.1">
<context>
<name>AddressBookPage</name>
<message>
<source>Right-click to edit address or label</source>
<translation>Faîtes un clique droit afin de modifier l'adresse ou l'étiquette</translation>
</message>
<message>
<source>Create a new address... |
import {
Component,
Input,
Output,
OnChanges,
EventEmitter,
ViewChild,
} from '@angular/core';
import { IField, IRelatedField } from '../../models/api';
import { MatTableDataSource } from '@angular/material';
import { TreeNode } from 'angular-tree-component';
import { ITreeNode } from 'angular-tree-componen... |
import { debugLogger, pDelay, castArray } from '@terascope/job-components';
import { AdminClient, IAdminClient } from 'node-rdkafka';
import { ERR_UNKNOWN_TOPIC_OR_PART } from '../../asset/src/_kafka_helpers/error-codes';
import { isKafkaError } from '../../asset/src/_kafka_helpers';
import { kafkaBrokers } from './con... |
import Worker from "../../../src/queue/Worker";
import Command from "../../../base/Command";
/**
* Get status of jobs in queue and failed jobs on given queues by name
*
* @class
*/
export default class QueueStatusCommand extends Command {
/**
* Integrated command flag
*
* @type {boolean}
*/
static ... |
import path from 'path';
import fs from 'fs';
import ParseRender from '../../../../piper/parseRender';
import {
UsedMemoryType, PackageInfo, GenerateContext,
} from '../../type';
import { ConfirmCoverPrompt } from '../../prompt';
import { Exit } from '../../../../common';
const BuildBabelPackageInfo = (): PackageI... |
import React, {useState} from 'react'
import {storiesOf} from '@storybook/react'
import {RequestElement, RequestElementProps, RequestData, Action} from '../src'
const Updating: React.FC<RequestElementProps> = props => {
const [count, setCount] = useState(0)
return (
<React.Fragment>
<RequestElement
... |
import request from 'supertest';
import { getConnection } from 'typeorm';
import { app } from '../app';
import createConnection from '../database'
// é o que acontece no /Surveys.test.ts
// Começo do bloco de testes
describe("User", () => {
beforeAll(async () => { // Isso aqui é pra começar os testes, antes de t... |
import * as mongoose from 'mongoose';
const mapImageSchema = new mongoose.Schema({
name: String,
topLeftX: Number,
topLeftY: Number,
topRightX: Number,
topRightY: Number,
bottomRightX: Number,
bottomRightY: Number,
floor: Number
}, { collection: 'mapImages' });
const MapImage = mongoose.model('MapImage', mapI... |
import React, { Fragment } from 'react';
import { useIntl, connect } from 'umi';
import { Table, Card } from 'antd';
import { cardProps } from '@/pages/onnet-portal/core/utils/props';
import styles from '@/pages/onnet-portal/core/style.less';
const CardAccountDetails = (props) => {
const { lb_account = { data: {} }... |
import { Component, OnInit } from '@angular/core';
import {CustomerService} from "../../service/customer.service";
import {Router} from "@angular/router";
import {Customer} from "../../model/customer.model";
import {FormBuilder, FormGroup, Validators} from "@angular/forms";
@Component({
selector: 'app-edit-customer'... |
// *** 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 * as utilities from "../utilities";
/**
* Represents user credentials used for publishing activity
* API Version... |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... |
import {
AutoWireMeta,
} from '@t2ee/core';
import Rule from '../core/Rule';
import ValidationRule from '../core/ValidationRule';
@ValidationRule('Min')
class MinRule implements Rule {
validate(value: any, parameter: any, meta: AutoWireMeta, args: any[]): boolean {
const type = meta.declaredType;
... |
import { cleanup, renderWithNav } from '../utils/testUtils'
import HotspotsScreen from '../features/hotspots/root/HotspotsScreen'
afterEach(cleanup)
describe('Test Hotspot Screen', () => {
it('renders HotspotScreen.tsx', async () => {
const hotspotScreen = renderWithNav(HotspotsScreen)
const title = hotspot... |
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-sale',
templateUrl: './sale.component.html'
})
export class SaleComponent implements OnInit {
constructor() { }
ngOnInit() {
}
} |
import * as React from 'react';
import { Link } from 'react-router-dom';
import {
Button,
Typography,
Table,
TableBody,
TableCell,
TableHead,
TableRow
} from '@material-ui/core';
import * as Data from './utils/data';
import { numberFormatter } from './utils/formatter';
export const Panel... |
export enum ques{
age = 'q2',
gender = 'q3',
education = 'q4',
marital = 'q6',
familyType = 'q7',
noMembers = 'q8',
houseType = 'q9',
noDependents = 'q10',
noMembersEarning = 'q11',
saveMoney = 'q14',
saveType = 'q15',
earnBenefits = 'q16',
workType = 'q18',
workY... |
import { VFC } from 'react';
import styled from '@emotion/styled';
export interface QuoteIconProps {
className?: string;
}
const QuoteIcon: VFC<QuoteIconProps> = ({ className }) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="17"
height="7"
viewBox="0 0 17 7"
fill="no... |
import {AfterViewInit, Component, ElementRef, OnDestroy, OnInit, ViewChild} from '@angular/core';
import {NGXLogger} from 'ngx-logger';
import WebsocketService from '../services/websocket.service';
import {environment} from '../../environments/environment';
import {Subscription} from 'rxjs';
import ChatMessageDTO from ... |
import { IFeatureTagStore } from 'lib/types/stores/feature-tag-store';
import { IFeatureToggleStore } from 'lib/types/stores/feature-toggle-store';
import dbInit from '../helpers/database-init';
import getLogger from '../../fixtures/no-logger';
let stores;
let db;
let featureTagStore: IFeatureTagStore;
let featureTogg... |
import React, { useEffect, useContext, useCallback, useMemo } from "react";
import {
useParams,
useNavigate,
Routes,
Route,
useSearchParams,
} from "react-router-dom";
import { Tab } from "@headlessui/react";
import Blockies from "react-blockies";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesom... |
import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
/**
* @name Vibration
* @description Vibrates the device
* @usage
* ```typescript
* import { Vibration } from '@ionic-native/vibration/ngx';
*
* constructor(private vibration: Vibration) { }
*
... |
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/api": {
target: "http://localhost:8080",
changeOrigin: true,
secure: false,
... |
import { ContextKeyExpr, ContextKeyExpression } from './contextkey/contextkey';
export default class BooleanExpression {
private expression_:string;
private rules_:ContextKeyExpression = null;
constructor(expression:string) {
this.expression_ = expression;
}
private createContext(ctx: any) {
return {
ge... |
import rough from "roughjs/bin/rough";
import { ExcalidrawElement } from "../element/types";
import { getElementAbsoluteCoords } from "../element";
import { renderScene } from "../renderer";
import { AppState } from "../types";
import { ExportType } from "./types";
import nanoid from "nanoid";
const LOCAL_STORAGE_K... |
/**
* Related to a file operation error.
*/
export declare class FileError extends Error {
/**
* Throws when a operation involving files occours.
* @param message Custom message for this error.
*/
constructor(message?: string);
} |
import * as path from 'path';
import format from 'string-format';
import BitId from '../../bit-id/bit-id';
import { DEFAULT_COMPONENTS_DIR_PATH, DEFAULT_DEPENDENCIES_DIR_PATH } from '../../constants';
import { PathLinuxRelative, PathOsBased } from '../path';
import { parseScope } from './parse-scope';
/**
* the foll... |
// border style constants
import { C_LIGHT_GRAY, C_MED_GRAY } from './colors'
export const BORDER_WIDTH_DEFAULT = '1px'
export const BORDER_RADIUS_DEFAULT = '2px'
export const BORDER_STYLE_NONE = 'none'
export const BORDER_STYLE_SOLID = 'solid'
export const BORDER_SOLID_LIGHT = `${BORDER_WIDTH_DEFAULT} ${BORDER_STY... |
import { App } from 'vue'
import VXETable from '../v-x-e-table'
import PanelComponent from './src/panel'
import filterHook from './src/hook'
export const Filter = {
install (app: App) {
VXETable.hooks.add('$tableFilter', filterHook)
app.component(PanelComponent.name, PanelComponent)
}
}
export default Fil... |
import { NgModule } from "@angular/core";
import { ActorsPageComponent } from "./actorspage.component";
import { CommonModule } from "@angular/common";
import { ComponentsModule } from "../components/components.module";
import { ActorService } from "../services/actor_service";
import { ACTOR_SERVICE } from "../config/t... |
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { TypeOrmModule } from '@nestjs/typeorm';
import { CarModule } from './Entities/Car/car.module'
import { RegisterCarModule } from './Entities/registerCar/register.module'
@Module... |
import {useMix, useSharedTransition} from '@animated';
import {enhance, onCheckType} from '@common';
import {ColorDefault} from '@theme/color';
import React, {useCallback, useMemo, useState} from 'react';
import equals from 'react-fast-compare';
import {StyleSheet, TouchableOpacity, View} from 'react-native';
import An... |
import {Injectable, EventEmitter, Inject, InjectionToken} from '@angular/core';
import {Observable} from 'rxjs/Observable';
import {Observer} from 'rxjs/Observer';
import 'rxjs/add/observable/of';
import 'rxjs/add/operator/concat';
import 'rxjs/add/operator/share';
import 'rxjs/add/operator/map';
import 'rxjs/add/opera... |
import { storiesOf } from '@storybook/angular';
import { ButtonComponent } from '../../projects/globus-library/src/lib/button/button.component';
storiesOf('Globus Button', module)
.add('basic', () => ({
component: ButtonComponent,
props: {
text: 'Hello'
}
}))
.add('disabled', () => ({
compo... |
import { RenderTargetWrapper } from "../renderTargetWrapper";
/** @hidden */
export class WebGPURenderTargetWrapper extends RenderTargetWrapper {
/** @hidden */
public _defaultAttachments: number[];
} |
/*
* 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 { TypeOf } from '@kbn/config-schema';
import { RequestHandler, Logger ... |
import { Notification } from 'linode-js-sdk/lib/account';
import { compose, path } from 'ramda';
import * as React from 'react';
import { RouteComponentProps, withRouter } from 'react-router';
import {
createStyles,
Theme,
withStyles,
WithStyles
} from 'src/components/core/styles';
import Typography from 'src/c... |
import React from 'react';
import { Icon } from '../Icon/Icon';
import { css, cx } from 'emotion';
// @ts-ignore
import RCCascader from 'rc-cascader';
import { CascaderOption } from '../Cascader/Cascader';
import { onChangeCascader, onLoadDataCascader } from '../Cascader/optionMappings';
import { stylesFactory } from ... |
/// <reference types="node" />
import * as Gulp from 'gulp';
import { GulpTask } from '@microsoft/gulp-core-build';
/** @public */
export interface IApiExtractorTaskConfig {
/**
* Indicates whether the task should be run.
*/
enabled?: boolean;
/**
* The file path of the exported entry point, ... |
export interface ILanguage {
or: string,
text: string,
title: string,
} |
import { Address } from '@helium/crypto-react-native'
import { AssertLocationV2 } from '@helium/transactions'
import { getKeypair } from './secureAccount'
export const makeAssertLocTxn = async (
ownerB58: string,
gatewayB58: string,
payerB58: string,
location: string,
nonce: number,
gain: number,
elevati... |
import { Card } from './card';
import { CardStack } from './card-stack';
import { SyncObject } from './core/synchronize-object/decorator';
import { GameObject } from './core/synchronize-object/game-object';
import { InnerXml, ObjectSerializer } from './core/synchronize-object/object-serializer';
import { ObjectStore } ... |
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-usuarios',
templateUrl: './usuarios.component.html',
styleUrls: ['./usuarios.component.scss']
})
export class UsuariosComponent implements OnInit {
constructor() { }
ngOnInit() {
}
} |
import { ARIAAttribute, ARIAAttributeValue, ARIRRoleAttribute } from '@markuplint/ml-spec';
import fetch from './fetch';
import { nameCompare } from './utils';
export async function getAria() {
const $ = await fetch('https://www.w3.org/TR/wai-aria-1.2/');
const $roleList = $('#role_definitions section.role');
const... |
import React, { useMemo, useState } from 'react';
import {
mediaGalleryGridStyle,
mediaGalleryStyle,
mediaGallerySubstageStyle,
substageMediaGalleryStyle
} from './styles/MediaGallery.styles';
import { RemoteParticipant, LocalVideoStream } from '@azure/communication-calling';
import { utils } from '../Utils/Uti... |
import {Request, Response} from 'express';
import {Controller, Get} from '@overnightjs/core';
import {Logger} from '@overnightjs/logger';
import {Ctrl} from './Ctrl';
import Api from '../api/Api';
import Rates from '../model/Rates';
@Controller('cron')
export class CronController implements Ctrl {
private readonly ... |
import { useEffect, useState } from 'react';
export function useDebouncedState<T>(
initialValue: T,
delayInMilliseconds: number,
): [T, (val: T) => void] {
const [memoizedValue, setMemoizedValue] = useState<T>(initialValue);
const [debouncedValue, setDebouncedValue] = useState<T>(initialValue);
let timerId: ... |
/**
* @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 './ng_dev_mode';
import {global} from './global';
/**
* THIS FILE CONTAINS CODE WHICH SHOULD BE TREE SHAKEN... |
import { Field, ObjectType } from 'type-graphql';
import * as domain from '../../domain';
import { Connection, Edge } from '../../util';
import { NotationEdge } from './NotationEdge.type';
import { PageInfo } from './PageInfo.type';
@ObjectType()
export class NotationConnection implements Connection<domain.Notation> {... |
function getExpressionStatement(propertyName: string, right: object) {
return {
type: 'ExpressionStatement',
expression: {
type: 'AssignmentExpression',
operator: '=',
left: {
type: 'MemberExpression',
object: {
type: 'ThisExpression',
},
property: {... |
import { CID } from "multiformats/cid"
import FileSystem from "./fs/index.js"
import * as cidLog from "./common/cid-log.js"
import * as debug from "./common/debug.js"
import * as dataRoot from "./data-root.js"
import * as ucan from "./ucan/internal.js"
import * as protocol from "./fs/protocol/index.js"
import * as ve... |
import { keygen, newHttpClient } from "../test-utils.ts";
import { afterAll } from "https://deno.land/std@0.136.0/testing/bdd.ts";
import { assertEquals } from "https://deno.land/std@0.136.0/testing/asserts.ts";
import { LPushCommand } from "./lpush.ts";
import { LRemCommand } from "./lrem.ts";
const client = newHttpC... |
import {IXmlConvertService} from '../../../contracts/index';
import {IExportService} from '../../../contracts/index';
import {ExportService} from './export.service';
export class DiagramXmlConverter implements IXmlConvertService {
private _xmlContent: string;
private _enqueuedPromises: Array<Promise<string>> = []... |
import '../jquery_augmentation';
import {
dxElement
} from '../core/element';
import DataSource, {
DataSourceOptions
} from '../data/data_source';
import {
event
} from '../events/index';
import CollectionWidget, {
CollectionWidgetItem,
CollectionWidgetOptions
} from './collection/ui.collection_... |
import { ColorEnum } from "../../../enums/color.enum";
import { IconEnum } from "../../../enums/icon.enum";
export interface IDiscordMessageCommandVersionConfig {
imageColor: ColorEnum;
imageUrl: IconEnum;
} |
import { HttpException } from "./HttpException"
export default class HttpBadRequestException extends HttpException {
protected defaultName = "400 Bad Request"
} |
import { PanoramaToCubeMapTools } from '../../Misc/HighDynamicRange/panoramaToCubemap';
import { BaseTexture } from './baseTexture';
import { Texture } from './texture';
import { Scene } from "../../scene";
import { Nullable } from "../../types";
import { Tools } from '../../Misc/tools';
import "../../Engines/Extension... |
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { GoogleFontItemComponent } from './google-font-item.component';
describe('GoogleFontItemComponent', () => {
let component: GoogleFontItemComponent;
let fixture: ComponentFixture<GoogleFontItemComponent>;
beforeEach(async(() => {
... |
/**
* Edge Impulse API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* ... |
import {Module} from '@nestjs/common';
import {AuthService} from './auth.service';
import {ChallengesModule} from "../challenges/challenges.module";
import {UsersModule} from "../users/users.module";
import {JwtModule} from "@nestjs/jwt";
import {jwtConstants} from "./constants";
import {JwtStrategy} from "./jwt.strate... |
/**
* @license
* Copyright 2021 Frank Ballmeyer
* This code is released under the MIT license.
* SPDX-License-Identifier: MIT
*/
import React, { useContext } from 'react';
import {
Dialog,
DialogTitle,
DialogContent,
DialogActions,
Button,
useTheme,
useMediaQuery,
DialogContentText,
} from '@mui/... |
import { CompilerOptions } from "ts-morph";
export interface KeysConfiguration {
[key: string]: Configuration;
}
export interface ModelConfiguration {
path: string;
}
export interface IncludeConfiguration {
path: string;
}
export interface DeclarationConfiguration {
path: string;
}
export interface... |
import { Card } from 'antd'
import * as React from 'react'
import { StorageCluster } from '../../model/Monitoring'
import { getStorageCluster } from '../../service/Monitor'
import DatabaseStatusList from './DatabaseStatusList'
import NodeInfo from './NodeInfo'
import StorageClusterInfo from './StorageClusterInfo'
inte... |
import { Injectable } from '@angular/core';
import { Actions, Effect, ofType } from '@ngrx/effects';
import { Action } from '@ngrx/store';
import { Observable, of } from 'rxjs';
import { catchError, map, switchMap } from 'rxjs/operators';
import { MeowService } from '../../../services/meow.service';
import {
MeowActi... |
import React from 'react';
export interface CaptionProps {
/** The content to use as a graph label or timestamp */
children?: React.ReactNode;
}
export declare function Caption({ children }: CaptionProps): JSX.Element; |
import './Abbreviation';
import './Blockquote';
import './Code';
import './HighlightedText'; |
import { equals } from "../../../Data/Eq"
import { fmap } from "../../../Data/Functor"
import { append, filter, find, flength, List, notNull } from "../../../Data/List"
import { bindF, elemF, ensure, fromMaybe, joinMaybeList, Just, liftM2, Maybe, maybe, maybeToList, Nothing } from "../../../Data/Maybe"
import { Record ... |
import { PublicKey, Connection } from "@solana/web3.js";
import {
getHashedName,
getNameAccountKey,
NameRegistryState,
} from "@solana/spl-name-service";
import { isValidSolanaAddress, createConnectionConfig } from "./utils";
// Address of the SOL TLD
export const SOL_TLD_AUTHORITY = new PublicKey(
"58PwtjSDuF... |
import React from 'react';
import LoadingProfilePanel from '../Shimmer/LoadingProfilePanel';
import ProfilePanel from './ProfilePanel';
import HashtagPanel from './HashtagPanel';
import { Container } from './styles';
const LeftColumn: React.FC<LoadingProps> = ({isLoading}) => {
return (
<Container className="l... |
// *** 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";
/*... |
import Orphanage from '../models/Orphanage';
import imagesView from './images_view';
export default {
render(orphanage: Orphanage) {
return {
id: orphanage.id,
name: orphanage.name,
latitude: orphanage.latitude,
longitude: orphanage.longitude,
about: orphanage.about,
instructi... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.