/** * not use enum. it will increase the output size */ export declare const EBrowser: { Chrome: number; Firefox: number; Safari: number; }; type ValueOf = T[keyof T]; export type BrowserType = ValueOf; export {};