| 11 | import type { ErrorType } from "./pages/error" |
| 12 | |
| 13 | export interface IncomingRequest { |
| 14 | /** @default "http://localhost:3000" */ |
| 15 | host?: string |
| 16 | method?: string |
| 17 | cookies?: Record<string, string> |
| 18 | headers?: Record<string, any> |
| 19 | query?: Record<string, any> |
| 20 | body?: Record<string, any> |
| 21 | action: NextAuthAction |
| 22 | providerId?: string |
| 23 | error?: string |
| 24 | } |
| 25 | |
| 26 | export interface NextAuthHeader { |
| 27 | key: string |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…