fix: types

This commit is contained in:
Mo Bitar
2020-10-06 15:47:16 -05:00
parent fff0ae1313
commit 0d387349d7
5 changed files with 12 additions and 9 deletions

View File

@@ -10,6 +10,7 @@ export interface Bridge {
onMajorDataChange(): void;
onInitialDataLoad(): void;
onSearch(text?: string): void;
downloadBackup(): void;
}
export declare class BrowserBridge implements Bridge {
environment: Environment;
@@ -21,4 +22,5 @@ export declare class BrowserBridge implements Bridge {
onMajorDataChange(): void;
onInitialDataLoad(): void;
onSearch(): void;
downloadBackup(): void;
}

View File

@@ -21,7 +21,8 @@ declare type WebServices = {
keyboardService: KeyboardManager;
};
export declare class WebApplication extends SNApplication {
private $compile?;
private $compile;
private bridge;
private scope?;
private webServices;
private currentAuthenticationElement?;