mirror of
https://github.com/bitwarden/browser
synced 2026-01-03 00:53:23 +00:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
export interface EnvironmentService {
|
|
baseUrl: string;
|
|
webVaultUrl: string;
|
|
apiUrl: string;
|
|
identityUrl: string;
|
|
iconsUrl: string;
|
|
|
|
setUrlsFromStorage(): Promise<void>;
|
|
setUrls(urls: any): Promise<any>;
|
|
}
|