diff options
author | Matthew Miller <matthew@millerti.me> | 2022-12-27 21:38:27 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-12-27 21:38:27 -0800 |
commit | ad5e7119317ab5915c7063b575e2bdd4fe263f9e (patch) | |
tree | a11ddb1a513534c690e6fe883475a5d00e9e08e7 /packages/typescript-types | |
parent | 23df5830ba89d68ca743aa771c8a92d12617018f (diff) |
Lint everything
Diffstat (limited to 'packages/typescript-types')
-rw-r--r-- | packages/typescript-types/src/index.ts | 8 |
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; } |