zents
Version:
ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.
8 lines (7 loc) • 341 B
TypeScript
import type { Controllers, Route } from '../types/';
import { AbstractZenFileLoader } from '../filesystem/AbstractZenFileLoader';
import type { Class } from 'type-fest';
export declare class ControllerLoader extends AbstractZenFileLoader {
load(): Promise<Controllers>;
protected loadControllerRoutes(classModule: Class): Route[];
}