1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

update showToast signature

This commit is contained in:
Kyle Spearrin
2018-10-02 23:34:28 -04:00
parent 722b3b0970
commit 9afd50541b
2 changed files with 3 additions and 2 deletions

2
jslib

Submodule jslib updated: 45341ec408...f793ff0aa5

View File

@@ -110,7 +110,8 @@ export class NodePlatformUtilsService implements PlatformUtilsService {
return false;
}
showToast(type: 'error' | 'success' | 'warning' | 'info', title: string, text: string, global?: any): void {
showToast(type: 'error' | 'success' | 'warning' | 'info', title: string, text: string | string[],
options?: any): void {
throw new Error('Not implemented.');
}