diff --git a/types/confirmdialog/index.d.ts b/types/confirmdialog/index.d.ts index 39a507f8ac..1b7d106fac 100644 --- a/types/confirmdialog/index.d.ts +++ b/types/confirmdialog/index.d.ts @@ -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; } diff --git a/types/jquery-notifier/index.d.ts b/types/jquery-notifier/index.d.ts index 855b3e50b1..bf9d0ff93b 100644 --- a/types/jquery-notifier/index.d.ts +++ b/types/jquery-notifier/index.d.ts @@ -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;