Urara-Blog/node_modules/.pnpm-store/v3/files/59/077fb6e57efeb73a2690b272138d0b02fb2d10d92d1ea997f023d726b33f0649749264d1ffc34866f44a2fcab0ff0a0065bbea6be1dad382394b0b02a9a1e9
2022-08-14 01:14:53 +08:00

13 lines
462 B
Text

/**
* @returns {Preprocessor}
*/
export function preprocess(): Preprocessor
export type Encoding = import('micromark-util-types').Encoding
export type Value = import('micromark-util-types').Value
export type Chunk = import('micromark-util-types').Chunk
export type Code = import('micromark-util-types').Code
export type Preprocessor = (
value: Value,
encoding?: import('micromark-util-types').Encoding | undefined,
end?: boolean | undefined
) => Chunk[]