mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 20:40:20 +00:00
remove param in commentar
This commit is contained in:
Vendored
+6
-6
@@ -9,19 +9,19 @@
|
||||
interface JQueryStatic {
|
||||
/**
|
||||
* confirm Dialog
|
||||
* @param {confirmOptions} pOtions
|
||||
* {confirmOptions} pOtions
|
||||
*/
|
||||
confirm(pOtions: options.confirmOptions | string, title?: string): any;
|
||||
|
||||
/**
|
||||
* confirm alert
|
||||
* @param {any} pMessage
|
||||
* {any} pMessage
|
||||
*/
|
||||
alert(pMessage?: any | string, title?: string): any;
|
||||
|
||||
/**
|
||||
* confirm Dialog
|
||||
* @param {any} pMessage
|
||||
* {any} pMessage
|
||||
*/
|
||||
dialog(pOtions: options.confirmOptions | string): any;
|
||||
}
|
||||
@@ -29,19 +29,19 @@
|
||||
interface JQuery {
|
||||
/**
|
||||
* confirm Dialog
|
||||
* @param {confirmOptions} pOtions
|
||||
* {confirmOptions} pOtions
|
||||
*/
|
||||
confirm(pOtions: options.confirmOptions | string, title?: string): any;
|
||||
|
||||
/**
|
||||
* confirm alert
|
||||
* @param {any} pMessage
|
||||
* {any} pMessage
|
||||
*/
|
||||
alert(pMessage?: any, title?: string): any;
|
||||
|
||||
/**
|
||||
* confirm Dialog
|
||||
* @param {any} pMessage
|
||||
* {any} pMessage
|
||||
*/
|
||||
dialog(pOtions: options.confirmOptions | any): any;
|
||||
}
|
||||
|
||||
Vendored
+5
-5
@@ -6,11 +6,11 @@
|
||||
declare namespace notifier {
|
||||
/**
|
||||
* notifier.show(title, msg, type, icon, timeout);
|
||||
* @param {title} title
|
||||
* @param {msg} msg
|
||||
* @param {type} type
|
||||
* @param {icon} icon
|
||||
* @param {timeout} timeout
|
||||
* {title} title
|
||||
* {msg} msg
|
||||
* {type} type
|
||||
* {icon} icon
|
||||
* {timeout} timeout
|
||||
*/
|
||||
function show(title: string, msg: string, type: string, icon: string, timeout?: number): string | number;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user