mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
# Description of Changes Improve loading speed of desktop app by loading a default config until the backend has spawned.
28 lines
596 B
TypeScript
28 lines
596 B
TypeScript
declare module "*.js";
|
|
declare module '*.module.css';
|
|
|
|
// Auto-generated icon set JSON import
|
|
declare module 'assets/material-symbols-icons.json' {
|
|
const value: {
|
|
prefix: string;
|
|
icons: Record<string, any>;
|
|
width?: number;
|
|
height?: number;
|
|
};
|
|
export default value;
|
|
}
|
|
|
|
declare module 'axios' {
|
|
export interface AxiosRequestConfig<_D = unknown> {
|
|
suppressErrorToast?: boolean;
|
|
skipBackendReadyCheck?: boolean;
|
|
}
|
|
|
|
export interface InternalAxiosRequestConfig<_D = unknown> {
|
|
suppressErrorToast?: boolean;
|
|
skipBackendReadyCheck?: boolean;
|
|
}
|
|
}
|
|
|
|
export {};
|