TypeScript/tests/baselines/reference/customEventDetail.types
2018-05-03 14:18:50 -07:00

29 lines
840 B
Plaintext

=== tests/cases/compiler/customEventDetail.ts ===
var x: CustomEvent;
>x : CustomEvent<any>
>CustomEvent : CustomEvent<T>
// valid since detail is any
x.initCustomEvent('hello', true, true, { id: 12, name: 'hello' });
>x.initCustomEvent('hello', true, true, { id: 12, name: 'hello' }) : void
>x.initCustomEvent : (typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, detailArg: any) => void
>x : CustomEvent<any>
>initCustomEvent : (typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, detailArg: any) => void
>'hello' : "hello"
>true : true
>true : true
>{ id: 12, name: 'hello' } : { id: number; name: string; }
>id : number
>12 : 12
>name : string
>'hello' : "hello"
var y = x.detail.name;
>y : any
>x.detail.name : any
>x.detail : any
>x : CustomEvent<any>
>detail : any
>name : any