repo_name
stringlengths
5
122
path
stringlengths
3
232
text
stringlengths
6
1.05M
dogboydog/wanikani-cli
models/base-collection.ts
<reponame>dogboydog/wanikani-cli<filename>models/base-collection.ts /* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * * @export * @interface BaseCollection */ export interface BaseCollection { /** * * @type {Collec...
dogboydog/wanikani-cli
models/pronunciation-audio.ts
<filename>models/pronunciation-audio.ts<gh_stars>1-10 /* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * * @export * @interface PronunciationAudio */ export interface PronunciationAudio { /** * The location of the audio. ...
dogboydog/wanikani-cli
models/subject-type.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * The type of the associated subject, one of: kanji, radical, or vocabulary. * @export * @enum {string} */ export enum SubjectType { Kanji = 'kanji', Radical = 'radical', ...
dogboydog/wanikani-cli
models/base-reading.ts
<gh_stars>1-10 /* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * * @export * @interface BaseReading */ export interface BaseReading { /** * A singular subject reading. * @type {string} * @memberof BaseReading ...
dogboydog/wanikani-cli
src/cli/imperative.ts
import * as path from "path"; // WIP Imperative version of Brightside import { IImperativeConfig } from "@zowe/imperative"; import { CommonOptions } from "./common-options"; const config: IImperativeConfig = { productDisplayName: 'WaniKani CLI', commandModuleGlobs: [ "list/list.definition!(.d).*s", ...
dogboydog/wanikani-cli
models/base-error.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * Errors with a message will return with the follow response body structure * @export * @interface BaseError */ export interface BaseError { /** * * @type {string} ...
dogboydog/wanikani-cli
src/apis/level-progression-api.ts
<filename>src/apis/level-progression-api.ts /* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ import globalAxios, { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../../configuration'; // Some imports not used dep...
dogboydog/wanikani-cli
models/study-material-data.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * * @export * @interface StudyMaterialData */ export interface StudyMaterialData { /** * Timestamp when the study material was created. * @type {Date} * @memberof ...
dogboydog/wanikani-cli
models/review.ts
<filename>models/review.ts<gh_stars>1-10 /* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ import {BaseResource} from './base-resource'; /** * * @export * @interface Review */ export interface Review extends BaseResource { /** ...
dogboydog/wanikani-cli
src/apis/index.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ export * from "./assignment-api"; export * from "./level-progression-api"; export * from "./reset-api"; export * from "./review-api"; export * from "./review-statistics-api"; export * from "....
dogboydog/wanikani-cli
models/subject.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ import {BaseResource} from './base-resource'; /** * * @export * @interface Subject */ export interface Subject extends BaseResource { /** * * @type {RadicalSubject | Kanj...
dogboydog/wanikani-cli
models/subjects.ts
<gh_stars>1-10 /* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ import {BaseCollection} from './base-collection'; /** * * @export * @interface Subjects */ export interface Subjects extends BaseCollection { /** * * @typ...
dogboydog/wanikani-cli
models/radical-subject.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ import {CommonSubject} from './common-subject'; /** * * @export * @interface RadicalSubject */ export interface RadicalSubject extends CommonSubject { /** * An array of numeric...
dogboydog/wanikani-cli
models/meaning.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * * @export * @interface Meaning */ export interface Meaning { /** * A singular subject meaning. * @type {string} * @memberof Meaning */ meaning: any; ...
dogboydog/wanikani-cli
src/apis/review-statistics-api.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ import globalAxios, { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../../configuration'; // Some imports not used depending on template conditions // @ts-ignore ...
dogboydog/wanikani-cli
models/level-progression.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ import {BaseResource} from './base-resource'; /** * * @export * @interface LevelProgression */ export interface LevelProgression extends BaseResource { /** * * @type {Lev...
dogboydog/wanikani-cli
models/index.ts
<filename>models/index.ts export * from './assignment'; export * from './assignment-data'; export * from './assignments'; export * from './auxiliary-meaning'; export * from './base-collection'; export * from './base-collection-pages'; export * from './base-error'; export * from './base-reading'; export * from './base-r...
dogboydog/wanikani-cli
models/vocab-reading.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * * @export * @interface VocabReading */ export interface VocabReading { }
dogboydog/wanikani-cli
models/level-progression-data.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * * @export * @interface LevelProgressionData */ export interface LevelProgressionData { /** * Timestamp when the user abandons the level. This is primary used when the user...
dogboydog/wanikani-cli
models/pronunciation-audio-metadata.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ /** * Details about the pronunciation audio. See table below for details. * @export * @interface PronunciationAudioMetadata */ export interface PronunciationAudioMetadata { /** *...
dogboydog/wanikani-cli
models/kanji-subject.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ import {CommonSubject} from './common-subject'; /** * * @export * @interface KanjiSubject */ export interface KanjiSubject extends CommonSubject { /** * An array of numeric ide...
dogboydog/wanikani-cli
src/apis/spaced-repetition-system-api.ts
/* tslint:disable */ /* eslint-disable */ /** * WaniKani * WaniKani: The API * * OpenAPI spec version: 20170710.0 * * */ import globalAxios, { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../../configuration'; // Some imports not used depending on template conditions // @ts-ignore ...
dogboydog/wanikani-cli
src/cli/list/reviews/list-reviews.definition.ts
/* * This program and the accompanying materials are made available under the terms of the * Eclipse Public License v2.0 which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-v20.html * * SPDX-License-Identifier: EPL-2.0 * * Copyright Contributors to the Zowe Project. * */ import...
Igor360/snapshot-hub
server/index.ts
<filename>server/index.ts<gh_stars>0 global['fetch'] = require('node-fetch'); import express from 'express'; import { getAddress } from '@ethersproject/address'; import { spaces } from './helpers/spaces'; import db from './helpers/mysql'; import relayer from './helpers/relayer'; import { pinJson } from './helpers/ipfs'...
Igor360/snapshot-hub
server/writer/proposal.ts
import snapshot from '@snapshot-labs/snapshot.js'; import { storeProposal } from '../helpers/adapters/mysql'; import { sendMessage } from '../helpers/discord'; import { jsonParse } from '../helpers/utils'; import { spaces } from '../helpers/spaces'; const network = process.env.NETWORK || 'testnet'; export async funct...
Igor360/snapshot-hub
server/helpers/ens.ts
import ENS from '@ensdomains/ensjs'; import snapshot from '@snapshot-labs/snapshot.js'; import gateways from '@snapshot-labs/snapshot.js/src/gateways.json'; const gateway = gateways[0]; export async function uriGet( gateway: string, key: string, protocolType = 'ipfs' ) { // key = key.replace( // 'storage....
ulesta/ionic-native
src/@ionic-native/core/ionic-native-plugin.ts
import { checkAvailability } from './decorators/common'; import { get } from './util'; export class IonicNativePlugin { static pluginName: string; static pluginRef: string; static plugin: string; static repo: string; static platforms: string[]; static install: string; /** * Returns a boolean tha...
ulesta/ionic-native
src/@ionic-native/plugins/photo-viewer/index.ts
import { Injectable } from '@angular/core'; import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core'; export interface PhotoViewerOptions { /** * Set to false to disable the share button (Android only). Default: true */ share?: boolean; } /** * @name Photo Viewer * @description This plugin ...
wiloke1/wil-react-sticky
src/dom.ie.d.ts
<gh_stars>10-100 interface Element { msMatchesSelector: (selectors: string) => boolean; }
wiloke1/wil-react-sticky
dist/offset.d.ts
<reponame>wiloke1/wil-react-sticky<filename>dist/offset.d.ts declare function offset(el: Element): { top: number; left: number; }; export default offset;
wiloke1/wil-react-sticky
src/closest.ts
<gh_stars>10-100 // https://developer.mozilla.org/en-US/docs/Web/API/Element/closest // For browsers that do not support Element.closest(), but carry support for element.matches() (or a prefixed equivalent, meaning IE9+), a polyfill exists: if (typeof Element !== 'undefined') { if (!Element.prototype.matches) { ...
wiloke1/wil-react-sticky
dist/index.d.ts
<filename>dist/index.d.ts import { PureComponent } from 'react'; import './closest'; interface StickyProps { children: JSX.Element | ((isSticky: boolean) => JSX.Element); offsetTop: number; containerSelectorFocus: string; zIndex: number; stickyEnableRange: number[]; onChange: (isSticky: ...
wiloke1/wil-react-sticky
src/index.tsx
<filename>src/index.tsx import React, { PureComponent, CSSProperties } from 'react'; import offset from './offset'; import './closest'; interface StickyProps { children: JSX.Element | ((isSticky: boolean) => JSX.Element); offsetTop: number; containerSelectorFocus: string; zIndex: number; stickyEnableRange: n...
wiloke1/wil-react-sticky
src/offset.ts
<gh_stars>10-100 function getWindow(el: Document) { return el.nodeType === 9 && el.defaultView; } function offset(el: Element) { const doc = el?.ownerDocument; const docElem = doc.documentElement; const win = getWindow(doc); let box = { top: 0, left: 0 }; if (!doc) { return { top: 0, left:...
Subho0710/Swasthify-1
src/app/Hospitals/dashboard/dashboard.component.ts
import { Component, OnInit , OnDestroy} from '@angular/core'; import { FormControl, FormGroup } from '@angular/forms'; import { ActivatedRoute,Router } from '@angular/router'; import { Subscription, timer } from 'rxjs'; import { Hospitals } from 'src/app/models/hospitals'; import { HospitalService } from 'src/app/servi...
Subho0710/Swasthify-1
src/app/Hospitals/forget-pas/forget-pas.component.ts
<gh_stars>1-10 import { Component, OnInit } from '@angular/core'; import { FormBuilder,FormGroup,Validators } from '@angular/forms'; import Swal from 'sweetalert2'; import { flyInOut , expand} from '../../Utilities/animations/animation'; import { SharingService } from 'src/app/services/sharing.service'; @Component({ ...
Subho0710/Swasthify-1
src/app/models/changePass.ts
export class ChangePassword{ currentPassword !: string; newPassword !: string; confirmNewPassword !: string; }
Subho0710/Swasthify-1
src/app/Hospitals/profile-hospital/profile-hospital.component.ts
<reponame>Subho0710/Swasthify-1 import { Hospitals } from './../../models/hospitals'; import { Component, OnInit } from '@angular/core'; import { HospitalService } from 'src/app/services/hospital.service'; import { ActivatedRoute, Router } from '@angular/router'; import { FormBuilder,FormGroup,Validators } from '@angul...
Subho0710/Swasthify-1
src/app/Patients/dashboard-patient/dashboard-patient.component.ts
<reponame>Subho0710/Swasthify-1<filename>src/app/Patients/dashboard-patient/dashboard-patient.component.ts import { Component, OnInit, OnDestroy } from '@angular/core'; import { HospitalDetails } from 'src/app/models/hospital-details'; import { TotalService } from 'src/app/models/total-service'; import { PatientService...
Subho0710/Swasthify-1
src/app/services/patient.service.ts
<filename>src/app/services/patient.service.ts import { ChangePassword } from './../models/changePass'; import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { Observable } from 'rxjs'; import { Patients } from '../models/patients'; import { TotalService } from '../models/...
Subho0710/Swasthify-1
src/app/Hospitals/login/login.component.ts
<reponame>Subho0710/Swasthify-1<filename>src/app/Hospitals/login/login.component.ts<gh_stars>1-10 import { Component, OnInit } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { Router } from '@angular/router'; import { HospitalService } from 'src/app/services/hospital.s...
d8vjork/laravel-json-api
docs/.vuepress/config.ts
import { defineUserConfig } from 'vuepress' import type { DefaultThemeOptions } from 'vuepress' export default defineUserConfig<DefaultThemeOptions>({ base: '/laravel-json-api/', lang: 'en-US', title: 'Laravel JSON:API', description: 'Integrate JSON:API resources on Laravel', plugins: [ [ '@vuepre...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/components/ServiceQueryBuilder.tsx
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/stores/QueryBuilderState.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/stores/ChangeDetectionState.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/transformation/pureGraph/from/executionPlan/V1_ExecutionPlanTransformer.ts
<gh_stars>0 /** * Copyright (c) 2020-present, <NAME> * * 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 applica...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/transformation/pureGraph/to/V1_ProtocolToMetaModelGraphFourthPassBuilder.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/transformation/pureProtocol/serializationHelpers/V1_DiagramSerializationHelper.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio-components/src/components/LegendLogo.tsx
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/stores/__tests__/roundtrip/MappingRoundtripTestData.ts
<reponame>nayanika2/legend-studio /** * Copyright (c) 2020-present, <NAME> * * 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 * * Unle...
nayanika2/legend-studio
packages/legend-studio/src/models/metamodels/pure/model/packageableElements/mapping/InferableMappingElementId.ts
<reponame>nayanika2/legend-studio<filename>packages/legend-studio/src/models/metamodels/pure/model/packageableElements/mapping/InferableMappingElementId.ts /** * Copyright (c) 2020-present, <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance wi...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/model/packageableElements/mapping/V1_PropertyMapping.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/index.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/components/QueryBuilder_EditorPlugin.tsx
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/stores/editor-state/element-editor-state/FileGenerationEditorState.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/stores/QueryBuilderPropertyEditorState.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/metamodels/pure/model/packageableElements/domain/Class.ts
<reponame>nayanika2/legend-studio /** * Copyright (c) 2020-present, <NAME> * * 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 * * Unle...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/components/__tests__/QueryBuilder_BuildLambdaFailure.test.tsx
<reponame>nayanika2/legend-studio<gh_stars>0 /** * Copyright (c) 2020-present, <NAME> * * 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...
nayanika2/legend-studio
packages/legend-studio/src/components/__tests__/SDLCServerConfig.test.tsx
<gh_stars>0 /** * Copyright (c) 2020-present, <NAME> * * 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 applica...
nayanika2/legend-studio
packages/legend-studio-shared/src/index.ts
<reponame>nayanika2/legend-studio /** * Copyright (c) 2020-present, <NAME> * * 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 * * Unle...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/transformation/pureProtocol/serializationHelpers/V1_ConnectionSerializationHelper.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/stores/editor-state/FileGenerationState.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/sdlc/models/entity/EntityChangeConflict.ts
<reponame>nayanika2/legend-studio /** * Copyright (c) 2020-present, <NAME> * * 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 * * Unle...
nayanika2/legend-studio
packages/legend-studio/src/stores/ReviewStore.tsx
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/stores/__tests__/roundtrip/GenerationSpecificationTestData.ts
<reponame>nayanika2/legend-studio /** * Copyright (c) 2020-present, <NAME> * * 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 * * Unle...
nayanika2/legend-studio
packages/legend-studio/src/models/sdlc/models/review/Review.ts
<reponame>nayanika2/legend-studio /** * Copyright (c) 2020-present, <NAME> * * 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 * * Unle...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/stores/QueryBuilderFetchStructureState.ts
<filename>packages/legend-studio-preset-query-builder/src/stores/QueryBuilderFetchStructureState.ts /** * Copyright (c) 2020-present, <NAME> * * 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 ...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/model/packageableElements/mapping/V1_EnumerationMapping.ts
<filename>packages/legend-studio/src/models/protocols/pure/v1/model/packageableElements/mapping/V1_EnumerationMapping.ts<gh_stars>1-10 /** * Copyright (c) 2020-present, <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Yo...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/transformation/pureGraph/from/V1_PostProcessorTransformer.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio-shared/src/utils/__tests__/FormatterUtils.test.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/components/QueryBuilder.tsx
<filename>packages/legend-studio-preset-query-builder/src/components/QueryBuilder.tsx /** * Copyright (c) 2020-present, <NAME> * * 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 * * h...
nayanika2/legend-studio
packages/legend-studio/src/stores/__tests__/roundtrip/executionPlan/SimpleRelationalPlanTestData.ts
<gh_stars>0 /** * Copyright (c) 2020-present, <NAME> * * 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 applica...
nayanika2/legend-studio
packages/legend-studio/src/models/metamodels/pure/action/SourceInformationHelper.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/metadata/MetadataServerClient.ts
<reponame>nayanika2/legend-studio<gh_stars>0 /** * Copyright (c) 2020-present, <NAME> * * 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...
nayanika2/legend-studio
packages/legend-studio/src/models/metamodels/pure/model/packageableElements/store/flatData/model/FlatData.ts
<gh_stars>0 /** * Copyright (c) 2020-present, <NAME> * * 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 applica...
nayanika2/legend-studio
packages/legend-studio/src/models/metamodels/pure/model/packageableElements/domain/Function.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/transformation/pureGraph/from/V1_SectionIndexTransformer.ts
<filename>packages/legend-studio/src/models/protocols/pure/v1/transformation/pureGraph/from/V1_SectionIndexTransformer.ts /** * Copyright (c) 2020-present, <NAME> * * 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 ...
nayanika2/legend-studio
packages/legend-studio/src/stores/editor-state/FileGenerationViewerState.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.ts
<reponame>nayanika2/legend-studio /** * Copyright (c) 2020-present, <NAME> * * 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 * * Unle...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/Pure.ts
<gh_stars>1-10 /** * Copyright (c) 2020-present, <NAME> * * 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 appl...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/components/QueryBuilderPropertyInfoTooltip.tsx
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/stores/editor-state/GraphGenerationState.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/stores/QueryBuilderValueSpecificationBuilderHelper.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio-preset-query-builder/src/QueryBuilder_Const.ts
<reponame>nayanika2/legend-studio /** * Copyright (c) 2020-present, <NAME> * * 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 * * Unle...
nayanika2/legend-studio
packages/legend-studio-app/cypress/utils/ElementEditorTester.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/components/setup/WorkspaceSelector.tsx
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/metamodels/pure/model/packageableElements/service/ServiceExecution.ts
<filename>packages/legend-studio/src/models/metamodels/pure/model/packageableElements/service/ServiceExecution.ts /** * Copyright (c) 2020-present, <NAME> * * 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 o...
nayanika2/legend-studio
packages/legend-studio/src/components/editor/edit-panel/GrammarTextEditor.tsx
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/components/editor/edit-panel/mapping-editor/execution-plan-viewer/SqlPlanViewer.tsx
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/transformation/pureGraph/to/V1_GraphBuilderExtensions.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/__tests__/MetaModelUtils.test.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio-plugin-management/src/components/projectDashboard/ProjectDashboard.tsx
<filename>packages/legend-studio-plugin-management/src/components/projectDashboard/ProjectDashboard.tsx<gh_stars>0 /** * Copyright (c) 2020-present, <NAME> * * 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 ...
nayanika2/legend-studio
packages/legend-studio-shared/src/utils/RandomUtils.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/stores/Router.ts
<reponame>nayanika2/legend-studio /** * Copyright (c) 2020-present, <NAME> * * 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 * * Unle...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/model/packageableElements/V1_PackageableElement.ts
<gh_stars>1-10 /** * Copyright (c) 2020-present, <NAME> * * 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 appl...
nayanika2/legend-studio
packages/legend-studio/src/components/shared/TypeTree.tsx
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/metamodels/pure/model/packageableElements/mapping/MappingInclude.ts
<reponame>nayanika2/legend-studio<filename>packages/legend-studio/src/models/metamodels/pure/model/packageableElements/mapping/MappingInclude.ts /** * Copyright (c) 2020-present, <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Lice...
nayanika2/legend-studio
packages/legend-studio-manual-tests/src/__tests__/roundtrip-grammar/RoundtripGrammar.test.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/protocols/pure/v1/model/packageableElements/store/relational/mapping/V1_EmbeddedRelationalPropertyMapping.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...
nayanika2/legend-studio
packages/legend-studio/src/models/metamodels/pure/model/packageableElements/store/relational/model/Join.ts
/** * Copyright (c) 2020-present, <NAME> * * 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 a...