123456789101112 |
- /** Import HTML as modules - https://stackoverflow.com/a/47705264/3323672 */
- declare module "*.html" {
- /** Content of the HTML file as a string */
- const content: string;
- export default content;
- }
- declare module "*.md" {
- /** Content of the markdown file, converted to an HTML string */
- const htmlContent: string;
- export default htmlContent;
- }
|