TypeScript/tests/baselines/reference/customEventDetail.types
Orta Therox 9ebe11c2d3
Migrate latest dom types into libdom.d.ts (#44684)
* Add the types_web dom dts

* Update

* Adds new DTS

* Update baselines
2021-06-25 14:25:30 -07:00

28 lines
787 B
Plaintext

=== tests/cases/compiler/customEventDetail.ts ===
var x: CustomEvent;
>x : CustomEvent<any>
// 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 : (type: string, bubbles?: boolean, cancelable?: boolean, detail?: any) => void
>x : CustomEvent<any>
>initCustomEvent : (type: string, bubbles?: boolean, cancelable?: boolean, detail?: 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