7 lines
91 B
TypeScript
7 lines
91 B
TypeScript
import type { Request } from "express"
|
|
|
|
|
|
export interface TRPCContext {
|
|
req: Request
|
|
}
|