mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
import { ServerConfigResponse } from "../../models/response/server-config.response";
|
|
|
|
export abstract class ConfigApiServiceAbstraction {
|
|
get: () => Promise<ServerConfigResponse>;
|
|
}
|