context.ts 187 B

123456789
  1. import { User } from "../modules/users/user.schema";
  2. // 扩展Context类型
  3. export type Variables = {
  4. user: User;
  5. token: string;
  6. }
  7. export type AuthContext = { Variables: Variables }