check-strong.d.ts 396 B

1234567891011
  1. /**
  2. * @import {Options, State} from 'mdast-util-to-markdown'
  3. */
  4. /**
  5. * @param {State} state
  6. * @returns {Exclude<Options['strong'], null | undefined>}
  7. */
  8. export function checkStrong(state: State): Exclude<Options["strong"], null | undefined>;
  9. import type { State } from 'mdast-util-to-markdown';
  10. import type { Options } from 'mdast-util-to-markdown';
  11. //# sourceMappingURL=check-strong.d.ts.map