summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-12-27 19:32:40 -0800
committerMatthew Miller <matthew@millerti.me>2022-12-27 19:32:40 -0800
commit468c8ce2f13105fd7e31d84cb41c7bbb07aa9ec9 (patch)
tree16be72a94cb8865f97fec60989d74cf6ba959b1d /packages/typescript-types
parent53ecc64fcef448c054b175adf788bd09560f594f (diff)
Update typing on getTransports()
Diffstat (limited to 'packages/typescript-types')
-rw-r--r--packages/typescript-types/src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index 6d68b17..13d63bd 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -171,7 +171,7 @@ export type Base64URLString = string;
* Properties marked optional are not supported in all browsers.
*/
export interface AuthenticatorAttestationResponseFuture extends AuthenticatorAttestationResponse {
- getTransports: () => AuthenticatorTransportFuture[];
+ getTransports(): AuthenticatorTransportFuture[];
}
/**