Newer
Older
taehui / qwilight-fe / src / type / window.d.ts
@Taehui Taehui on 27 Apr 201 bytes v1.0.0
declare global {
  interface Navigator {
    userAgentData: {
      getHighEntropyValues: (hints: ["architecture"]) => Promise<{
        architecture: "arm" | "x86";
      }>;
    };
  }
}

export {};