Fixed #958 - useToast.d.ts missing api method definitions

pull/973/head
mertsincan 2021-02-10 09:53:33 +03:00
parent ae490c6741
commit 7edffc6b4d
1 changed files with 5 additions and 1 deletions

View File

@ -1 +1,5 @@
export declare function useToast(): { add(args:{ severity?: string, summary?: string, detail?: string, life?: number, closable?: boolean, group?: string }): void }
export declare function useToast(): {
add(args:{ severity?: string, summary?: string, detail?: string, life?: number, closable?: boolean, group?: string }): void;
removeGroup(group: string): void;
removeAllGroups(): void;
}