UNPKG

@ark7/router

Version:
11 lines (10 loc) 306 B
import * as Router from 'koa-router'; /** * Options to define a handler. */ export interface SubControllerOptions { path?: string; name?: string; middlewares?: Router.IMiddleware[]; } export declare function SubController(options?: SubControllerOptions): PropertyDecorator & MethodDecorator;