10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
declare module '*.md' {
|
|
const rawmd: string;
|
|
export default rawmd;
|
|
}
|
|
|
|
declare module '*.txt' {
|
|
const content: string;
|
|
export default content;
|
|
}
|