* 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
22 lines
502 B
TypeScript
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;
|
|
}
|
|
}
|