web: allow markdown import

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-11-26 13:30:39 +01:00
parent 0e6a799e6d
commit 7aa61d86e4
4 changed files with 400 additions and 0 deletions

5
web/src/global.d.ts vendored
View File

@ -1,4 +1,9 @@
declare module "*.css";
declare module "*.md" {
const html: string;
const metadata: object;
const filename: string;
}
declare namespace Intl {
class ListFormat {