mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 21:09:30 +08:00
17 lines
626 B
Text
17 lines
626 B
Text
/**
|
|
* @type {Handle}
|
|
* @param {Link} node
|
|
*/
|
|
export function link(node: Link, _: import("../types.js").Parent | null | undefined, context: import("../types.js").Context, safeOptions: import("../types.js").SafeOptions): string;
|
|
export namespace link {
|
|
export { linkPeek as peek };
|
|
}
|
|
export type Link = import('mdast').Link;
|
|
export type Handle = import('../types.js').Handle;
|
|
export type Exit = import('../types.js').Exit;
|
|
/**
|
|
* @type {Handle}
|
|
* @param {Link} node
|
|
*/
|
|
declare function linkPeek(node: Link, _: import("../types.js").Parent | null | undefined, context: import("../types.js").Context): string;
|
|
export {};
|