fast-controllers
Version:
class based controllers, and implied folder route mapping for Fastify
9 lines (8 loc) • 348 B
TypeScript
import FastControllerException from './FastControllerException';
declare class FastControllerException_InvalidControllerPath extends FastControllerException {
name: string;
path: string;
constructor(path: string);
}
export default FastControllerException_InvalidControllerPath;
export { FastControllerException_InvalidControllerPath };