* chore: remove leftover console log * chore: don't show a ring over dropdowns * feat(routes): support multi-applications in config * test: update snapshot
21 lines
450 B
TypeScript
21 lines
450 B
TypeScript
import { AxiosInstance } from 'axios';
|
|
|
|
interface NimbusConfig {
|
|
basePath: string;
|
|
routes: string | null;
|
|
headers: string | null;
|
|
apiBaseUrl: string;
|
|
isVersioned: boolean;
|
|
routeExtractorException: string | null;
|
|
currentUser: string | null;
|
|
applications: string | null;
|
|
activeApplication: string | null;
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
axios: AxiosInstance;
|
|
Nimbus: NimbusConfig;
|
|
}
|
|
}
|