export interface IEnvConfig { baseUrl: string; BIMBoxUrl: string; clientId: string; } export interface IStaticConfig extends IEnvConfig { redirectUri: string; customProtocol: string; updateUrl: string; middleServerPort: number; obvServerPort: number; supportType: string[]; pmvLocalSupportType: string[]; modelPath: string; modelsDirPre: string; tokenFile: string; myShare: string; shareToMe: string; fileInfo: string; modelInfo: string; } export interface IModelFileCurrentVersion { myShare: string; shareToMe: string; fileInfo: string; modelInfo: string; } export interface IEnvConfigList { [key: string]: IEnvConfig; } //# sourceMappingURL=electron-config.d.ts.map