Arno Kaimbacher
f403c3109f
All checks were successful
CI Pipeline / japa-tests (push) Successful in 54s
- npm updates - side menu with child items - flash messages via HttpContext response (extended via macro)
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;
|
|
}
|
|
}
|