| 68 | Interface for the JQuery callback |
| 69 | */ |
| 70 | interface JQueryCallback { |
| 71 | add(...callbacks: any[]): any; |
| 72 | disable(): any; |
| 73 | empty(): any; |
| 74 | fire(...arguments: any[]): any; |
| 75 | fired(): boolean; |
| 76 | fireWith(context: any, ...args: any[]): any; |
| 77 | has(callback: any): boolean; |
| 78 | lock(): any; |
| 79 | locked(): boolean; |
| 80 | remove(...callbacks: any[]): any; |
| 81 | } |
| 82 | |
| 83 | /* |
| 84 | Allows jQuery Promises to interop with non-jQuery promises |
no outgoing calls
no test coverage detected