summaryrefslogtreecommitdiffhomepage
path: root/example/example-server.d.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-08-18 11:16:52 -0700
committerMatthew Miller <matthew@millerti.me>2023-08-18 11:16:52 -0700
commit872893e3c4930c293cd8b701395429e24088ce1e (patch)
tree5b5cc3ed1e41e7d4cc3eaf01af312e290d959f23 /example/example-server.d.ts
parente30aa4f9f563186c3f7dd3c4601b91a884f45da7 (diff)
Run `deno fmt` on example project
Diffstat (limited to 'example/example-server.d.ts')
-rw-r--r--example/example-server.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/example-server.d.ts b/example/example-server.d.ts
index 2e56445..fc72b24 100644
--- a/example/example-server.d.ts
+++ b/example/example-server.d.ts
@@ -1,4 +1,4 @@
-import type { AuthenticatorDevice } from '@simplewebauthn/typescript-types';
+import type { AuthenticatorDevice } from "@simplewebauthn/typescript-types";
/**
* You'll need a database to store a few things:
@@ -37,7 +37,7 @@ interface LoggedInUser {
devices: AuthenticatorDevice[];
}
-declare module 'express-session' {
+declare module "express-session" {
interface SessionData {
/**
* A simple way of storing a user's current challenge being signed by registration or authentication.