Files
nimbus/resources/types/global.d.ts
Mazen Touati a090c484f8 feat(routes): support multi-applications in config [breaking] (#34)
* chore: remove leftover console log

* chore: don't show a ring over dropdowns

* feat(routes): support multi-applications in config

* test: update snapshot
2026-01-12 21:56:38 +01:00

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;
}
}