test02/node_modules/@mdit-vue/plugin-title/dist/index.d.cts
罗佳鸿 6aa1ebe342
Some checks are pending
部署文档 / deploy-gh-pages (push) Waiting to run
first commit
2024-08-13 10:11:19 +08:00

20 lines
363 B
TypeScript

import { PluginSimple } from 'markdown-it';
/**
* Get markdown page title info
*
* Extract it into env
*/
declare const titlePlugin: PluginSimple;
declare module '@mdit-vue/types' {
interface MarkdownItEnv {
/**
* The title that extracted by `@mdit-vue/plugin-title`
*/
title?: string;
}
}
export { titlePlugin };