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 • 459 B
TypeScript
import NotFoundController from './NotFoundController';
export default class BlogPostController extends NotFoundController {
protected config: BlogControllerCtorConfig;
constructor(config: BlogControllerCtorConfig);
action({ postSlug }: BlogPostControllerActionParams): Promise<{
code: number;
headers: {
'content-type': string;
};
body: string;
}>;
}
//# sourceMappingURL=BlogPostController.d.ts.map