summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-12-27 21:38:27 -0800
committerMatthew Miller <matthew@millerti.me>2022-12-27 21:38:27 -0800
commitad5e7119317ab5915c7063b575e2bdd4fe263f9e (patch)
treea11ddb1a513534c690e6fe883475a5d00e9e08e7 /packages/typescript-types
parent23df5830ba89d68ca743aa771c8a92d12617018f (diff)
Lint everything
Diffstat (limited to 'packages/typescript-types')
-rw-r--r--packages/typescript-types/src/index.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index 85f3ef5..b8b1394 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -205,9 +205,13 @@ export interface PublicKeyCredentialFuture extends PublicKeyCredential {
// See https://github.com/w3c/webauthn/issues/1745
isConditionalMediationAvailable?(): Promise<boolean>;
// See https://w3c.github.io/webauthn/#sctn-parseCreationOptionsFromJSON
- parseCreationOptionsFromJSON?(options: PublicKeyCredentialCreationOptionsJSON): PublicKeyCredentialCreationOptions;
+ parseCreationOptionsFromJSON?(
+ options: PublicKeyCredentialCreationOptionsJSON,
+ ): PublicKeyCredentialCreationOptions;
// See https://w3c.github.io/webauthn/#sctn-parseRequestOptionsFromJSON
- parseRequestOptionsFromJSON?(options: PublicKeyCredentialRequestOptionsJSON): PublicKeyCredentialRequestOptions;
+ parseRequestOptionsFromJSON?(
+ options: PublicKeyCredentialRequestOptionsJSON,
+ ): PublicKeyCredentialRequestOptions;
// See https://w3c.github.io/webauthn/#dom-publickeycredential-tojson
toJSON?(): PublicKeyCredentialJSON;
}