mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
export abstract class EnvironmentService {
|
|
baseUrl: string;
|
|
webVaultUrl: string;
|
|
apiUrl: string;
|
|
identityUrl: string;
|
|
iconsUrl: string;
|
|
|
|
setUrlsFromStorage: () => Promise<void>;
|
|
setUrls: (urls: any) => Promise<any>;
|
|
}
|