7 lines
127 B
TypeScript
7 lines
127 B
TypeScript
import { IncomingMessage, ServerResponse } from 'http'
|
|
|
|
export type Context = {
|
|
req: IncomingMessage
|
|
res: ServerResponse
|
|
}
|