1234567891011121314151617181920212223 |
- /**
- * @param {Emphasis} node
- * @param {Parents | undefined} _
- * @param {State} state
- * @param {Info} info
- * @returns {string}
- */
- export function emphasis(node: Emphasis, _: Parents | undefined, state: State, info: Info): string;
- export namespace emphasis {
- export { emphasisPeek as peek };
- }
- export type Emphasis = import('mdast').Emphasis;
- export type Parents = import('mdast').Parents;
- export type Info = import('../types.js').Info;
- export type State = import('../types.js').State;
- /**
- * @param {Emphasis} _
- * @param {Parents | undefined} _1
- * @param {State} state
- * @returns {string}
- */
- declare function emphasisPeek(_: Emphasis, _1: Parents | undefined, state: State): string;
- export {};
|