@casual-simulation/aux-common
Version:
Common library for AUX projects
11 lines • 577 B
TypeScript
export type AuthenticatorKind = 'google-password-manager' | 'chrome-on-mac' | 'windows-hello' | 'icloud-keychain' | 'dashlane' | '1password' | 'nord-pass' | 'keeper' | 'enpass' | 'chromium-browser' | 'ms-edge-on-mac' | 'idmelon' | 'bitwarden' | 'samsung-pass' | 'thales' | 'unknown';
export interface AAGUIDInfo {
kind: AuthenticatorKind;
name: string;
}
export interface AAGUIDMap {
[aaguid: string]: AAGUIDInfo;
}
export declare const aaguidMap: AAGUIDMap;
export declare function getInfoForAAGUID(aaguid: string): AAGUIDInfo;
//# sourceMappingURL=AAGUID.d.ts.map