inline-code.d.ts 534 B

12345678910111213141516171819
  1. /**
  2. * @param {InlineCode} node
  3. * @param {Parents | undefined} _
  4. * @param {State} state
  5. * @returns {string}
  6. */
  7. export function inlineCode(node: InlineCode, _: Parents | undefined, state: State): string;
  8. export namespace inlineCode {
  9. export { inlineCodePeek as peek };
  10. }
  11. import type { InlineCode } from 'mdast';
  12. import type { Parents } from 'mdast';
  13. import type { State } from 'mdast-util-to-markdown';
  14. /**
  15. * @returns {string}
  16. */
  17. declare function inlineCodePeek(): string;
  18. export {};
  19. //# sourceMappingURL=inline-code.d.ts.map