| 39 | |
| 40 | declare module 'express-session' { |
| 41 | interface SessionData { |
| 42 | /** |
| 43 | * A simple way of storing a user's current challenge being signed by registration or |
| 44 | * authentication. It should be expired after `timeout` milliseconds (optional argument for |
| 45 | * `generate` methods, defaults to 60000ms) |
| 46 | */ |
| 47 | currentChallenge?: string; |
| 48 | } |
| 49 | } |
nothing calls this directly
no outgoing calls
no test coverage detected