export type OSType = 'Windows' | 'macOS' | 'Linux' | 'Unknown'; export type BrowserType = 'Chrome' | 'Edge' | 'Firefox' | 'Unknown'; export interface EnvInfo { osName: OSType; browserName: BrowserType; browserVersion: string; } //# sourceMappingURL=env.d.ts.map