1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-06-08 23:46:24 +02:00

18 lines
217 B
TypeScript
Raw Normal View History

declare module Express {
2017-07-15 17:48:29 +02:00
export interface Request {
resultPipe?: any
body?: {
loginCredential
}
2017-07-15 17:48:29 +02:00
}
2016-05-09 17:04:56 +02:00
2017-07-15 17:48:29 +02:00
export interface Response {
tpl?: any
}
2017-07-15 17:48:29 +02:00
export interface Session {
user?;
}
}