summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-11-29 11:18:11 -0800
committerMatthew Miller <matthew@millerti.me>2022-11-29 11:18:11 -0800
commitd7eede66afba168d9fda45bb1e635b446ffe4598 (patch)
tree6ef1a763c241ab7c4173dac7e250b2abe63d3443 /packages/typescript-types/src
parenta3d4542840399eaf7c481b3707f20d1d66bce93f (diff)
Run linting on everything
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r--packages/typescript-types/src/index.ts7
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;