mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-25 08:06:22 +08:00
jquery.contextMenu type definitions are now compatible with --noImplicitAy.
This commit is contained in:
16
jquery.contextMenu/jquery.contextMenu.d.ts
vendored
16
jquery.contextMenu/jquery.contextMenu.d.ts
vendored
@@ -1,4 +1,4 @@
|
||||
// Type definitions for jQuery contextMenu 1.6.6
|
||||
// Type definitions for jQuery contextMenu 1.7.0
|
||||
// Project: http://medialize.github.com/jQuery-contextMenu/
|
||||
// Definitions by: Natan Vivo <https://github.com/nvivo/>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
@@ -11,9 +11,9 @@ interface JQueryContextMenuOptions {
|
||||
trigger?: string;
|
||||
autoHide?: boolean;
|
||||
delay?: number;
|
||||
determinePosition?: (menu) => void;
|
||||
position?: (opt, x, y) => void;
|
||||
positionSubmenu?: (menu) => void;
|
||||
determinePosition?: (menu: JQuery) => void;
|
||||
position?: (opt: JQuery, x: number, y: number) => void;
|
||||
positionSubmenu?: (menu: JQuery) => void;
|
||||
zIndex?: number;
|
||||
animation?: {
|
||||
duration?: number;
|
||||
@@ -26,9 +26,15 @@ interface JQueryContextMenuOptions {
|
||||
};
|
||||
callback?: (key: any, options: any) => any;
|
||||
items: any;
|
||||
reposition?: boolean;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
interface JQueryStatic {
|
||||
contextMenu(options?: JQueryContextMenuOptions): JQuery;
|
||||
contextMenu(type: string): JQuery;
|
||||
contextMenu(type: string, selector?: any): JQuery;
|
||||
}
|
||||
|
||||
interface JQuery {
|
||||
contextMenu(options?: any): JQuery;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user