diff options
author | Matthew Miller <matthew@millerti.me> | 2020-12-01 15:15:25 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 15:15:25 -0800 |
commit | dfcc7794b987324092690def8be93fba3b3f59ac (patch) | |
tree | a65d81497d5198421ebf6ed7f7b63cd7617ac890 /packages/typescript-types/src | |
parent | 6497d24880702909e718d33f93513d2d7e5221ce (diff) | |
parent | 8c0a07faf43079229dffbbaf1c05a0bf7948b4ab (diff) |
Merge branch 'master' into update-typescript
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r-- | packages/typescript-types/src/index.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 4f238d7..954615b 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -2,6 +2,21 @@ * @packageDocumentation * @module @simplewebauthn/typescript-types */ + +import type { + AuthenticatorAssertionResponse, + AuthenticatorAttestationResponse, + AuthenticatorTransport, + COSEAlgorithmIdentifier, + PublicKeyCredential, + PublicKeyCredentialCreationOptions, + PublicKeyCredentialDescriptor, + PublicKeyCredentialRequestOptions, + PublicKeyCredentialUserEntity, +} 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. |