2025-06-30 15:21:07 -07:00
|
|
|
import * as html from './html.ts';
|
2025-06-22 14:11:11 -07:00
|
|
|
import * as markdown from './markdown.ts';
|
|
|
|
import * as static_files from './static.ts';
|
|
|
|
import * as typescript from './typescript.ts';
|
|
|
|
|
|
|
|
export default {
|
2025-06-30 15:21:07 -07:00
|
|
|
html,
|
2025-06-22 14:11:11 -07:00
|
|
|
markdown,
|
2025-06-30 15:21:07 -07:00
|
|
|
typescript,
|
|
|
|
static: static_files
|
2025-06-22 14:11:11 -07:00
|
|
|
};
|