diff options
author | Mikhail <16622558+mmv08@users.noreply.github.com> | 2024-01-10 14:22:29 +0100 |
---|---|---|
committer | Mikhail <16622558+mmv08@users.noreply.github.com> | 2024-01-10 14:22:29 +0100 |
commit | 308799b3222111f1d42ac56854d849a1c96d0ef2 (patch) | |
tree | 824a22419108e1c6cddecf7b50afc8f4cbb003f3 /packages/server/src/helpers/index.ts | |
parent | f888dae8c74cc8c5d2638cf3bdf92e42b5a713bb (diff) |
Export additional COSEPubKey types in the server package
Diffstat (limited to 'packages/server/src/helpers/index.ts')
-rw-r--r-- | packages/server/src/helpers/index.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/server/src/helpers/index.ts b/packages/server/src/helpers/index.ts index 029ce17..30cf867 100644 --- a/packages/server/src/helpers/index.ts +++ b/packages/server/src/helpers/index.ts @@ -42,7 +42,7 @@ import type { } from './decodeAttestationObject.ts'; import type { CertificateInfo } from './getCertificateInfo.ts'; import type { ClientDataJSON } from './decodeClientDataJSON.ts'; -import type { COSEPublicKey } from './cose.ts'; +import type { COSEPublicKey, COSEPublicKeyEC2, COSEPublicKeyOKP, COSEPublicKeyRSA } from './cose.ts'; import type { ParsedAuthenticatorData } from './parseAuthenticatorData.ts'; export type { @@ -52,5 +52,8 @@ export type { CertificateInfo, ClientDataJSON, COSEPublicKey, + COSEPublicKeyEC2, + COSEPublicKeyOKP, + COSEPublicKeyRSA, ParsedAuthenticatorData, }; |