🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
19
node_modules/mdast-util-to-hast/lib/handlers/image-reference.d.ts
generated
vendored
Normal file
19
node_modules/mdast-util-to-hast/lib/handlers/image-reference.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* Turn an mdast `imageReference` node into hast.
|
||||
*
|
||||
* @param {State} state
|
||||
* Info passed around.
|
||||
* @param {ImageReference} node
|
||||
* mdast node.
|
||||
* @returns {ElementContent | Array<ElementContent>}
|
||||
* hast node.
|
||||
*/
|
||||
export function imageReference(
|
||||
state: State,
|
||||
node: ImageReference
|
||||
): ElementContent | Array<ElementContent>
|
||||
export type ElementContent = import('hast').ElementContent
|
||||
export type Element = import('hast').Element
|
||||
export type Properties = import('hast').Properties
|
||||
export type ImageReference = import('mdast').ImageReference
|
||||
export type State = import('../state.js').State
|
||||
Loading…
Add table
Add a link
Reference in a new issue