11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
type SupportedBrowser = {
|
|
os: string;
|
|
os_version: string;
|
|
browser: string;
|
|
device: string;
|
|
browser_version: string | null;
|
|
real_mobile: boolean;
|
|
};
|
|
|
|
export default SupportedBrowser;
|