File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ const types = [
4040 'PublicKeyCredentialParameters' ,
4141 'PublicKeyCredentialRequestOptions' ,
4242 'PublicKeyCredentialUserEntity' ,
43+ 'ResidentKeyRequirement' ,
4344 'UserVerificationRequirement' ,
4445] ;
4546
Original file line number Diff line number Diff line change @@ -351,9 +351,9 @@ export interface RsaKeyGenParams extends Algorithm {
351351export type AttestationConveyancePreference = "direct" | "enterprise" | "indirect" | "none" ;
352352export type AuthenticatorTransport = "ble" | "hybrid" | "internal" | "nfc" | "usb" ;
353353export type COSEAlgorithmIdentifier = number ;
354+ export type ResidentKeyRequirement = "discouraged" | "preferred" | "required" ;
354355export type UserVerificationRequirement = "discouraged" | "preferred" | "required" ;
355356export type AuthenticatorAttachment = "cross-platform" | "platform" ;
356- export type ResidentKeyRequirement = "discouraged" | "preferred" | "required" ;
357357export type BufferSource = ArrayBufferView | ArrayBuffer ;
358358export type PublicKeyCredentialType = "public-key" ;
359359export type AlgorithmIdentifier = Algorithm | string ;
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ export type {
3636 PublicKeyCredentialRpEntity ,
3737 PublicKeyCredentialType ,
3838 PublicKeyCredentialUserEntity ,
39+ ResidentKeyRequirement ,
3940 UserVerificationRequirement ,
4041} from './dom.ts' ;
4142
You can’t perform that action at this time.
0 commit comments