remove param in commentar

This commit is contained in:
allipierre
2017-11-24 09:11:19 +01:00
parent 7ffa7f591a
commit e2fa7e85cc
2 changed files with 11 additions and 11 deletions
+6 -6
View File
@@ -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;
}
+5 -5
View File
@@ -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;