mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-28 07:20:49 -04:00

according to https://nuxt.com/docs/4.x/guide/directory-structure/shared#how-files-are-scanned standard
21 lines
453 B
TypeScript
21 lines
453 B
TypeScript
declare module 'markdown-it-sub' {
|
|
import type { PluginSimple } from 'markdown-it';
|
|
|
|
const plugin: PluginSimple;
|
|
export default plugin;
|
|
}
|
|
|
|
declare module 'markdown-it-sup' {
|
|
import type { PluginSimple } from 'markdown-it';
|
|
|
|
const plugin: PluginSimple;
|
|
export default plugin;
|
|
}
|
|
|
|
declare module 'markdown-it-mark' {
|
|
import type { PluginSimple } from 'markdown-it';
|
|
|
|
const plugin: PluginSimple;
|
|
export default plugin;
|
|
}
|