export declare enum Browser { Unknown = "Unknown", IE = "Internet Explorer", Safari = "Safari", Edge = "Edge", Chrome = "Chrome", Firefox = "Firefox Mozilla", Mobile = "Mobile" } export interface IBrowserInfo { name: Browser; version: string; } /** * Returns info about browser */ export declare function BrowserInfo(): IBrowserInfo; export declare function string2buffer(binaryString: string): Uint8Array; export declare function buffer2string(buffer: Uint8Array): string; export declare function concat(...buf: Uint8Array[]): Uint8Array; export declare function assign(target: any, ...sources: any[]): any;