8 lines
287 B
TypeScript
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;
|