kjelsrud.dev/node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts
2023-07-19 21:31:30 +02:00

22 lines
509 B
TypeScript

/**
* @param {InlineCode} node
* @param {Parent | undefined} _
* @param {State} state
* @returns {string}
*/
export function inlineCode(
node: InlineCode,
_: Parent | undefined,
state: State
): string
export namespace inlineCode {
export {inlineCodePeek as peek}
}
export type InlineCode = import('mdast').InlineCode
export type Parent = import('../types.js').Parent
export type State = import('../types.js').State
/**
* @returns {string}
*/
declare function inlineCodePeek(): string
export {}