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.
8 lines (6 loc) • 309 B
text/typescript
import NotFoundController from '../controllers/NotFoundController';
import { LoadDictElement, GetInstanceType } from 'di-why/build/src/DiContainer';
const loadDictElement: LoadDictElement<GetInstanceType<typeof NotFoundController>> = {
constructible: NotFoundController,
};
export default loadDictElement;