Files
delta-force-guide-web/src/markdown.d.ts
T

7 lines
186 B
TypeScript
Raw Normal View History

declare module "*.md" {
const attributes: Record<string, any>
const html: string
const toc: { level: string; content: string; slug: string }[]
export { attributes, html, toc }
}