www/shims.d.ts

10 lines
160 B
TypeScript
Raw Normal View History

2022-05-15 09:56:45 -04:00
declare module '*.md' {
const rawmd: string;
export default rawmd;
}
declare module '*.txt' {
const content: string;
export default content;
}