md-toy-blog
Version:
Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.
13 lines • 456 B
TypeScript
export default class NotFoundController implements ControllerInterface {
protected config?: NotFoundControllerCtorConfig | undefined;
constructor(config?: NotFoundControllerCtorConfig | undefined);
handleError(err: Error): {
code: number;
headers: {
'content-type': string;
};
body: string;
};
action(params: {}): Promise<ResponseInterface>;
}
//# sourceMappingURL=NotFoundController.d.ts.map