Files
nimbus/resources/types/global.d.ts
Mazen Touati 2895a0ddc6 feat(export): add shareable links (#41)
* feat(export): add shareable links

* chore: reconfigure PW

* test: fix namespace

* style: apply prettier

* chore: reduce workers count in CI for PW

tests are running slower (to the point some time out) and flaky

* fix: initialize pending request from store immediately

* chore: apply rector
2026-01-24 03:01:32 +01:00

22 lines
502 B
TypeScript

import { SharedState } from '../js/interfaces/share';
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;
sharedState: SharedState | null;
}
declare global {
interface Window {
axios: AxiosInstance;
Nimbus: NimbusConfig;
}
}