UNPKG

@trezor/connect-common

Version:

Collection of assets and utils used by trezor-connect library.

18 lines 544 B
export type InstallerPackage = 'rpm32' | 'rpm64' | 'deb32' | 'deb64' | 'mac' | 'win32' | 'win64'; export interface SystemInfo { os: { family?: 'Linux' | 'MacOS' | 'Windows'; mobile: boolean; }; browser: { supported: boolean; outdated: boolean; }; } export declare const getInstallerPackage: () => InstallerPackage | undefined; export declare const getSystemInfo: (supportedBrowsers: { [key: string]: { version: number; }; }) => SystemInfo; //# sourceMappingURL=systemInfo.d.ts.map