get-system-info.d.ts 186 B

123456
  1. export interface SystemInfo {
  2. windowWidth: number;
  3. windowHeight: number;
  4. pixelRatio: number;
  5. }
  6. export declare const getSystemInfo: (args?: undefined) => Promise<SystemInfo>;