summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-06-02 14:54:33 -0700
committerMatthew Miller <matthew@millerti.me>2020-06-02 14:54:33 -0700
commit555e69498f7c0a779a13393d534266070f1ba52f (patch)
tree5c2225e871f1b6cff46da2f80ed5800606a7e524 /packages/typescript-types/src
parent870e83e66c05dfdcc4bd571f922282693164cb30 (diff)
Remove some old comments
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r--packages/typescript-types/src/index.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index 034363d..c383330 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -10,7 +10,6 @@
export interface PublicKeyCredentialCreationOptionsJSON extends Omit<
PublicKeyCredentialCreationOptions, 'challenge' | 'user' | 'excludeCredentials'
> {
- // Will be converted to a Uint8Array in the browser
user: PublicKeyCredentialUserEntityJSON;
challenge: Base64String;
excludeCredentials: PublicKeyCredentialDescriptorJSON[];
@@ -23,7 +22,6 @@ PublicKeyCredentialCreationOptions, 'challenge' | 'user' | 'excludeCredentials'
export interface PublicKeyCredentialRequestOptionsJSON extends Omit<
PublicKeyCredentialRequestOptions, 'challenge' |'allowCredentials'
> {
- // Will be converted to a Uint8Array in the browser
challenge: Base64String;
allowCredentials: PublicKeyCredentialDescriptorJSON[];
}