You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dick/src/typings/passport-ext.d.ts

13 lines
167 B

type User = {
username: string
password: string
}
declare namespace Express {
export interface Request {
User: User
path: string
params?: any
}
}