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

8 lines
287 B
TypeScript

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