Urara-Blog/node_modules/.pnpm-store/v3/files/8a/a648ada771c6f74bfa1089d4ec6434b56acf0910bf6c66d349a12b48a40dab20022a302e1c2d4ce334c3959394df06817c1e05a00f577c90aaba6bce5725b6
2022-08-14 01:14:53 +08:00

28 lines
1 KiB
Text

/**
* @param {CompileOptions} [options]
* @returns {Compile}
*/
export function compile(
options?: import('micromark-util-types').CompileOptions | undefined
): Compile
export type Event = import('micromark-util-types').Event
export type CompileOptions = import('micromark-util-types').CompileOptions
export type CompileData = import('micromark-util-types').CompileData
export type CompileContext = import('micromark-util-types').CompileContext
export type Compile = import('micromark-util-types').Compile
export type Handle = import('micromark-util-types').Handle
export type HtmlExtension = import('micromark-util-types').HtmlExtension
export type NormalizedHtmlExtension =
import('micromark-util-types').NormalizedHtmlExtension
export type Media = {
image?: boolean | undefined
labelId?: string | undefined
label?: string | undefined
referenceId?: string | undefined
destination?: string | undefined
title?: string | undefined
}
export type Definition = {
destination?: string | undefined
title?: string | undefined
}