inline-code.d.ts 510 B

123456789101112131415161718
  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. export type InlineCode = import('mdast').InlineCode;
  12. export type Parents = import('mdast').Parents;
  13. export type State = import('../types.js').State;
  14. /**
  15. * @returns {string}
  16. */
  17. declare function inlineCodePeek(): string;
  18. export {};