diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-16 15:40:07 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-16 15:40:07 -0700 |
commit | 6869562c39b555c508dd23aad0792ac38e0b99c6 (patch) | |
tree | 2e3388966bb7d532608cf6ba8d897a2b62dd998a /packages/typescript-types | |
parent | 150b5a0857b4c78dcdf21a743f83030c8cb3c72c (diff) |
Explicitly export types to appease Deno
Diffstat (limited to 'packages/typescript-types')
-rw-r--r-- | packages/typescript-types/src/index.ts | 35 |
1 files changed, 26 insertions, 9 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 33193c9..773a160 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -4,26 +4,43 @@ */ import type { + AttestationConveyancePreference, + AuthenticationExtensionsClientInputs, + AuthenticationExtensionsClientOutputs, AuthenticatorAssertionResponse, + AuthenticatorAttachment, AuthenticatorAttestationResponse, + AuthenticatorSelectionCriteria, + COSEAlgorithmIdentifier, PublicKeyCredential, + PublicKeyCredentialCreationOptions, PublicKeyCredentialDescriptor, - AuthenticationExtensionsClientInputs, - AuthenticationExtensionsClientOutputs, + PublicKeyCredentialParameters, + PublicKeyCredentialRequestOptions, PublicKeyCredentialRpEntity, PublicKeyCredentialType, - PublicKeyCredentialParameters, - AuthenticatorSelectionCriteria, - AttestationConveyancePreference, UserVerificationRequirement, - AuthenticatorAttachment, +} from './dom'; + +export type { + AttestationConveyancePreference, + AuthenticationExtensionsClientInputs, + AuthenticationExtensionsClientOutputs, + AuthenticatorAssertionResponse, + AuthenticatorAttestationResponse, + AuthenticatorSelectionCriteria, + AuthenticatorTransport, + COSEAlgorithmIdentifier, + Crypto, + PublicKeyCredential, PublicKeyCredentialCreationOptions, + PublicKeyCredentialDescriptor, + PublicKeyCredentialParameters, PublicKeyCredentialRequestOptions, - COSEAlgorithmIdentifier, + PublicKeyCredentialUserEntity, + UserVerificationRequirement, } from './dom'; -export * from './dom'; - /** * A variant of PublicKeyCredentialCreationOptions suitable for JSON transmission to the browser to * (eventually) get passed into navigator.credentials.create(...) in the browser. |