make ApiConfig interface instead of type literal

pull/7913/head
Arman Ozak 5 years ago
parent 55fa646874
commit bce5c1660d

@ -18,11 +18,11 @@ export interface ApplicationInfo {
logoUrl?: string;
}
export type ApiConfig = {
export interface ApiConfig {
[key: string]: string;
url: string;
rootNamespace: string;
};
}
export interface Apis {
[key: string]: Partial<ApiConfig>;

Loading…
Cancel
Save