UNPKG

@msquared/pixel-streaming-client

Version:

Browser client for viewing pixel-streamed content from MSquared events

18 lines 431 B
import { type IBrowser, type ICPU, type IDevice, type IEngine, type IOS } from "ua-parser-js"; export type UA = { raw: string; os: IOS; device: IDevice; cpu: ICPU; engine: IEngine; browser: IBrowser; }; export declare function getUserAgent(): UA; export declare const OS: { iOS: string; }; export declare const Browser: { Safari: string; SafariMobile: string; }; //# sourceMappingURL=ua.d.ts.map