TypeScript/tests/baselines/reference/importHelpersInTsx.types
2016-06-14 18:23:31 -07:00

70 lines
1.8 KiB
Plaintext

=== tests/cases/compiler/external.tsx ===
declare var React: any;
>React : any
declare var o: any;
>o : any
export const x = <span {...o} />
>x : any
><span {...o} /> : any
>span : any
>o : any
=== tests/cases/compiler/script.tsx ===
declare var React: any;
>React : any
declare var o: any;
>o : any
const x = <span {...o} />
>x : any
><span {...o} /> : any
>span : any
>o : any
=== tests/cases/compiler/tslib.d.ts ===
export declare function __extends(d: Function, b: Function): void;
>__extends : (d: Function, b: Function) => void
>d : Function
>Function : Function
>b : Function
>Function : Function
export declare function __assign(t: any, ...sources: any[]): any;
>__assign : (t: any, ...sources: any[]) => any
>t : any
>sources : any[]
export declare function __decorate(decorators: Function[], target: any, key?: string | symbol, desc?: any): any;
>__decorate : (decorators: Function[], target: any, key?: string | symbol, desc?: any) => any
>decorators : Function[]
>Function : Function
>target : any
>key : string | symbol
>desc : any
export declare function __param(paramIndex: number, decorator: Function): Function;
>__param : (paramIndex: number, decorator: Function) => Function
>paramIndex : number
>decorator : Function
>Function : Function
>Function : Function
export declare function __metadata(metadataKey: any, metadataValue: any): Function;
>__metadata : (metadataKey: any, metadataValue: any) => Function
>metadataKey : any
>metadataValue : any
>Function : Function
export declare function __awaiter(thisArg: any, _arguments: any, P: Function, generator: Function): any;
>__awaiter : (thisArg: any, _arguments: any, P: Function, generator: Function) => any
>thisArg : any
>_arguments : any
>P : Function
>Function : Function
>generator : Function
>Function : Function