2024-03-30 00:48:28 +08:00

19 lines
375 B
TypeScript

import type { CanIUseOptions } from './caniuse.js'
import type { PDFOptions } from './pdf.js'
import type { IconsOptions } from './icons.js'
export interface MarkdownPowerPluginOptions {
pdf?: boolean | PDFOptions
icons?: boolean | IconsOptions
// video
bilibili?: boolean
youtube?: boolean
// code
codepen?: boolean
caniuse?: boolean | CanIUseOptions
}