Skip to content

Instantly share code, notes, and snippets.

@kant2002
Last active July 31, 2020 15:41
Show Gist options
  • Save kant2002/59cb655265f06716b1d42bc501a37840 to your computer and use it in GitHub Desktop.
Save kant2002/59cb655265f06716b1d42bc501a37840 to your computer and use it in GitHub Desktop.
jQueryEventextension
/// <reference types="jquery" />
declare interface JQuery {
on(events: ':passageinit', handler: (this: JQuery, t: x, ...args: any[]) => any): this;
}
/// <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