site/node_modules/mdast-util-to-markdown/lib/util/check-bullet.d.ts
2024-10-14 08:09:33 +02:00

12 lines
390 B
TypeScript

/**
* @typedef {import('../types.js').Options} Options
* @typedef {import('../types.js').State} State
*/
/**
* @param {State} state
* @returns {Exclude<Options['bullet'], null | undefined>}
*/
export function checkBullet(state: State): Exclude<Options['bullet'], null | undefined>;
export type Options = import('../types.js').Options;
export type State = import('../types.js').State;