kjelsrud.dev/node_modules/micromark/index.d.ts
2023-07-19 21:31:30 +02:00

12 lines
406 B
TypeScript

export function micromark(
value: Value,
encoding: Encoding | null | undefined,
options?: Options | null | undefined
): string
export function micromark(
value: Value,
options?: Options | null | undefined
): string
export type Encoding = import('micromark-util-types').Encoding
export type Options = import('micromark-util-types').Options
export type Value = import('micromark-util-types').Value