Last active
July 31, 2020 15:41
-
-
Save kant2002/59cb655265f06716b1d42bc501a37840 to your computer and use it in GitHub Desktop.
jQueryEventextension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference types="jquery" /> | |
declare interface JQuery { | |
on(events: ':passageinit', handler: (this: JQuery, t: x, ...args: any[]) => any): this; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference types="jquery" /> | |
/// <reference path="augmentations.d.ts" /> | |
interface x { | |
x: number; | |
} | |
$(document).on(':passageinit', event => { | |
event.x | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment