blank project

This commit is contained in:
root
2025-10-17 20:17:33 +00:00
commit 14b2d53e8e
9366 changed files with 1515019 additions and 0 deletions

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

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