devstar插件

This commit is contained in:
2025-07-26 16:40:29 +08:00
commit 30033daafe
4387 changed files with 1041101 additions and 0 deletions

15
node_modules/mdast-util-to-hast/lib/handlers/link.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
/**
* Turn an mdast `link` node into hast.
*
* @param {State} state
* Info passed around.
* @param {Link} node
* mdast node.
* @returns {Element}
* hast node.
*/
export function link(state: State, node: Link): Element;
export type Element = import("hast").Element;
export type Properties = import("hast").Properties;
export type Link = import("mdast").Link;
export type State = import("../state.js").State;