feat: frontmatter typing

This commit is contained in:
xieve
2025-09-10 11:59:48 +02:00
parent 7b0dd84a25
commit 972c68bc9d
3 changed files with 17 additions and 3 deletions

6
src/lib/types.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
import type { SvelteComponent } from "svelte";
interface MDsveXComponent extends SvelteComponent {
metadata: Record<string, unknown>;
}