show dialog interface

This commit is contained in:
Kyle Spearrin 2018-02-02 23:47:03 -05:00
parent 4a3705e675
commit 4c6a1892c0
1 changed files with 2 additions and 0 deletions

View File

@ -16,4 +16,6 @@ export abstract class PlatformUtilsService {
saveFile: (win: Window, blobData: any, blobOptions: any, fileName: string) => void; saveFile: (win: Window, blobData: any, blobOptions: any, fileName: string) => void;
getApplicationVersion: () => string; getApplicationVersion: () => string;
supportsU2f: (win: Window) => boolean; supportsU2f: (win: Window) => boolean;
showDialog: (text: string, title?: string, confirmText?: string, cancelText?: string,
type?: string) => Promise<boolean>;
} }