hojas/node_modules/markdown-it-front-matter/index.d.ts

10 lines
333 B
TypeScript
Raw Permalink Normal View History

2026-05-14 10:56:04 +02:00
declare module 'markdown-it-front-matter' {
import MarkdownIt from 'markdown-it/lib'
namespace markdownItFrontMatter {
type FrontMatterPluginOptions = (rawMeta: string) => void
}
const markdownItFrontMatter: MarkdownIt.PluginWithOptions<markdownItFrontMatter.FrontMatterPluginOptions>
export = markdownItFrontMatter
}