tethys.backend/contracts/response.ts

8 lines
173 B
TypeScript
Raw Normal View History

declare module '@ioc:Adonis/Core/Response' {
interface ResponseContract {
flash(key: string, message: any): this;
toRoute(route: string): this;
}
}