www/shims.d.ts
Paul W. 82ed74229b
dep ver bump; clean-up; minor updates
Signed-off-by: Paul W. <lambdapaul@protonmail.com>
2024-12-28 12:23:50 -05:00

10 lines
160 B
TypeScript

declare module '*.md' {
const rawmd: string;
export default rawmd;
}
declare module '*.txt' {
const content: string;
export default content;
}