🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
33
node_modules/mdast-util-to-markdown/lib/util/container-phrasing.d.ts
generated
vendored
Normal file
33
node_modules/mdast-util-to-markdown/lib/util/container-phrasing.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
/**
|
||||
* @typedef {import('../types.js').Handle} Handle
|
||||
* @typedef {import('../types.js').Info} Info
|
||||
* @typedef {import('../types.js').Parent} Parent
|
||||
* @typedef {import('../types.js').PhrasingContent} PhrasingContent
|
||||
* @typedef {import('../types.js').State} State
|
||||
*/
|
||||
/**
|
||||
* Serialize the children of a parent that contains phrasing children.
|
||||
*
|
||||
* These children will be joined flush together.
|
||||
*
|
||||
* @param {Parent & {children: Array<PhrasingContent>}} parent
|
||||
* Parent of flow nodes.
|
||||
* @param {State} state
|
||||
* Info passed around about the current state.
|
||||
* @param {Info} info
|
||||
* Info on where we are in the document we are generating.
|
||||
* @returns {string}
|
||||
* Serialized children, joined together.
|
||||
*/
|
||||
export function containerPhrasing(
|
||||
parent: import('../types.js').Parent & {
|
||||
children: Array<PhrasingContent>
|
||||
},
|
||||
state: State,
|
||||
info: Info
|
||||
): string
|
||||
export type Handle = import('../types.js').Handle
|
||||
export type Info = import('../types.js').Info
|
||||
export type Parent = import('../types.js').Parent
|
||||
export type PhrasingContent = import('../types.js').PhrasingContent
|
||||
export type State = import('../types.js').State
|
||||
Loading…
Add table
Add a link
Reference in a new issue