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