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/server/src/helpers/iso/isoCrypto/importKey.ts | |
parent | a3d4542840399eaf7c481b3707f20d1d66bce93f (diff) |
Run linting on everything
Diffstat (limited to 'packages/server/src/helpers/iso/isoCrypto/importKey.ts')
-rw-r--r-- | packages/server/src/helpers/iso/isoCrypto/importKey.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/helpers/iso/isoCrypto/importKey.ts b/packages/server/src/helpers/iso/isoCrypto/importKey.ts index badb24f..4d2ef2b 100644 --- a/packages/server/src/helpers/iso/isoCrypto/importKey.ts +++ b/packages/server/src/helpers/iso/isoCrypto/importKey.ts @@ -1,8 +1,8 @@ import WebCrypto from '@simplewebauthn/iso-webcrypto'; export async function importKey(opts: { - keyData: JsonWebKey, - algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams, + keyData: JsonWebKey; + algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams; }): Promise<CryptoKey> { const { keyData, algorithm } = opts; |