check-bullet-other.d.ts 287 B

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