@simplewebauthn/server
Version:
SimpleWebAuthn for Servers
12 lines • 387 B
TypeScript
/**
* Generate a suitably random value to be used as user ID
*/
export declare function generateUserID(): Promise<Uint8Array>;
/**
* Make it possible to stub the return value during testing
* @ignore Don't include this in docs output
*/
export declare const _generateUserIDInternals: {
stubThis: (value: Uint8Array) => Uint8Array;
};
//# sourceMappingURL=generateUserID.d.ts.map