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.
15 lines (11 loc) • 458 B
text/typescript
import { LoadDictElement, GetInstanceType } from 'di-why/build/src/DiContainer';
import Mostachito from 'mostachito';
const loadDictElement: LoadDictElement<GetInstanceType<typeof Mostachito>> = {
factory: ({ missingRefValueReplacementCallback }) => {
return new Mostachito(missingRefValueReplacementCallback);
},
locateDeps: {
missingRefValueReplacementCallback: 'missingRefValueReplacementCallback',
}
};
export default loadDictElement;