kobezzza,
я решил немного по извращатся и сделать так
import Controller from "../../lib/decorators/Controller";
import RequestMapping from "../../lib/decorators/RequestMapping";
@Controller("/")
export default class {
@RequestMapping("/test")
async getTestPage() {
}
@RequestMapping(["/home","/"])
async getMainPage() {
}
}