UNPKG

366 BTypeScriptView Raw
1/**
2 * Registers an action to be executed when a request comes on a given route.
3 * Must be applied on a controller action.
4 */
5export declare function All(route?: RegExp): Function;
6/**
7 * Registers an action to be executed when a request comes on a given route.
8 * Must be applied on a controller action.
9 */
10export declare function All(route?: string): Function;