bitwarden-estensione-browser/common/src/abstractions/environment.service.ts

15 lines
360 B
TypeScript
Raw Normal View History

2018-01-23 23:29:15 +01:00
export abstract class EnvironmentService {
2018-01-10 02:20:54 +01:00
baseUrl: string;
webVaultUrl: string;
apiUrl: string;
identityUrl: string;
iconsUrl: string;
2018-08-20 19:45:32 +02:00
notificationsUrl: string;
2019-06-20 14:56:45 +02:00
eventsUrl: string;
enterpriseUrl: string;
2018-01-10 02:20:54 +01:00
2018-06-25 14:06:19 +02:00
getWebVaultUrl: () => string;
2018-01-24 15:27:08 +01:00
setUrlsFromStorage: () => Promise<void>;
2018-01-23 23:29:15 +01:00
setUrls: (urls: any) => Promise<any>;
2018-01-10 02:20:54 +01:00
}