mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-12-14 14:17:18 +01:00
12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
import { RunTimeConfig } from "../infrastructure/config/RunTimeConfig";
|
|
|
|
declare global {
|
|
interface Window {
|
|
mergedConfig: RunTimeConfig;
|
|
defaultConfig: RunTimeConfig;
|
|
configOverride: Partial<RunTimeConfig>;
|
|
}
|
|
}
|
|
|
|
export {};
|