Fixed #958 - useToast.d.ts missing api method definitions
parent
ae490c6741
commit
7edffc6b4d
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue