kjelsrud.dev/node_modules/mdast-util-to-markdown/lib/configure.d.ts

13 lines
351 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
/**
* @typedef {import('./types.js').Options} Options
* @typedef {import('./types.js').State} State
*/
/**
* @param {State} base
* @param {Options} extension
* @returns {State}
*/
export function configure(base: State, extension: Options): State
export type Options = import('./types.js').Options
export type State = import('./types.js').State