source: trip-planner-front/node_modules/tslib/tslib.d.ts@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 4.7 KB
Line 
1/*! *****************************************************************************
2Copyright (c) Microsoft Corporation.
3
4Permission to use, copy, modify, and/or distribute this software for any
5purpose with or without fee is hereby granted.
6
7THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
8REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
9AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
10INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
11LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
12OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
13PERFORMANCE OF THIS SOFTWARE.
14***************************************************************************** */
15export declare function __extends(d: Function, b: Function): void;
16export declare function __assign(t: any, ...sources: any[]): any;
17export declare function __rest(t: any, propertyNames: (string | symbol)[]): any;
18export declare function __decorate(decorators: Function[], target: any, key?: string | symbol, desc?: any): any;
19export declare function __param(paramIndex: number, decorator: Function): Function;
20export declare function __metadata(metadataKey: any, metadataValue: any): Function;
21export declare function __awaiter(thisArg: any, _arguments: any, P: Function, generator: Function): any;
22export declare function __generator(thisArg: any, body: Function): any;
23export declare function __exportStar(m: any, o: any): void;
24export declare function __values(o: any): any;
25export declare function __read(o: any, n?: number): any[];
26/** @deprecated since TypeScript 4.2 */
27export declare function __spread(...args: any[][]): any[];
28/** @deprecated since TypeScript 4.2 */
29export declare function __spreadArrays(...args: any[][]): any[];
30export declare function __spreadArray(to: any[], from: any[], pack?: boolean): any[];
31export declare function __await(v: any): any;
32export declare function __asyncGenerator(thisArg: any, _arguments: any, generator: Function): any;
33export declare function __asyncDelegator(o: any): any;
34export declare function __asyncValues(o: any): any;
35export declare function __makeTemplateObject(cooked: string[], raw: string[]): TemplateStringsArray;
36export declare function __importStar<T>(mod: T): T;
37export declare function __importDefault<T>(mod: T): T | { default: T };
38/**
39 * Reading from a private instance field
40 */
41export declare function __classPrivateFieldGet<T extends object, V>(
42 receiver: T,
43 state: { has(o: T): boolean, get(o: T): V | undefined },
44 kind?: "f"
45): V;
46/**
47 * Reading from a private static field
48 */
49export declare function __classPrivateFieldGet<T extends new (...args: any[]) => unknown, V>(
50 receiver: T,
51 state: T,
52 kind: "f",
53 f: { value: V }
54): V;
55/**
56 * Reading from a private instance get accessor
57 */
58export declare function __classPrivateFieldGet<T extends object, V>(
59 receiver: T,
60 state: { has(o: T): boolean },
61 kind: "a",
62 f: () => V
63): V;
64/**
65 * Reading from a private static get accessor
66 */
67export declare function __classPrivateFieldGet<T extends new (...args: any[]) => unknown, V>(
68 receiver: T,
69 state: T,
70 kind: "a",
71 f: () => V
72): V;
73/**
74 * Reading from a private instance method
75 */
76export declare function __classPrivateFieldGet<T extends object, V extends (...args: any[]) => unknown>(
77 receiver: T,
78 state: { has(o: T): boolean },
79 kind: "m",
80 f: V
81): V;
82/**
83 * Reading from a private static method
84 */
85export declare function __classPrivateFieldGet<T extends new (...args: any[]) => unknown, V extends (...args: any[]) => unknown>(
86 receiver: T,
87 state: T,
88 kind: "m",
89 f: V
90): V;
91/**
92 * Writing to a private instance field
93 */
94 export declare function __classPrivateFieldSet<T extends object, V>(
95 receiver: T,
96 state: { has(o: T): boolean, set(o: T, value: V): unknown },
97 value: V,
98 kind?: "f"
99): V;
100/**
101 * Writing to a private static field
102 */
103export declare function __classPrivateFieldSet<T extends new (...args: any[]) => unknown, V>(
104 receiver: T,
105 state: T,
106 value: V,
107 kind: "f",
108 f: { value: V }
109): V;
110/**
111 * Writing to a private instance set accessor
112 */
113export declare function __classPrivateFieldSet<T extends object, V>(
114 receiver: T,
115 state: { has(o: T): boolean },
116 value: V,
117 kind: "a",
118 f: (v: V) => void
119): V;
120/**
121 * Writing to a private static set accessor
122 */
123export declare function __classPrivateFieldSet<T extends new (...args: any[]) => unknown, V>(
124 receiver: T,
125 state: T,
126 value: V,
127 kind: "a",
128 f: (v: V) => void
129): V;
130export declare function __createBinding(object: object, target: object, key: PropertyKey, objectKey?: PropertyKey): void;
Note: See TracBrowser for help on using the repository browser.