diff options
author | Matthew Miller <matthew@millerti.me> | 2022-11-29 11:18:11 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-11-29 11:18:11 -0800 |
commit | d7eede66afba168d9fda45bb1e635b446ffe4598 (patch) | |
tree | 6ef1a763c241ab7c4173dac7e250b2abe63d3443 /packages/typescript-types/src | |
parent | a3d4542840399eaf7c481b3707f20d1d66bce93f (diff) |
Run linting on everything
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r-- | packages/typescript-types/src/index.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 67aac4b..3bb93ba 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -95,7 +95,12 @@ export interface AuthenticationCredentialJSON export interface AuthenticatorAttestationResponseJSON extends Omit< AuthenticatorAttestationResponseFuture, - 'clientDataJSON' | 'attestationObject' | 'getTransports' | 'getAuthenticatorData' | 'getPublicKey' | 'getPublicKeyAlgorithm' + | 'clientDataJSON' + | 'attestationObject' + | 'getTransports' + | 'getAuthenticatorData' + | 'getPublicKey' + | 'getPublicKeyAlgorithm' > { clientDataJSON: Base64URLString; attestationObject: Base64URLString; |