🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
40
node_modules/mdast-util-mdx/index.d.ts
generated
vendored
Normal file
40
node_modules/mdast-util-mdx/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/**
|
||||
* Create an extension for `mdast-util-from-markdown` to enable MDX (ESM, JSX,
|
||||
* expressions).
|
||||
*
|
||||
* @returns {Array<FromMarkdownExtension>}
|
||||
* Extension for `mdast-util-from-markdown` to enable MDX (ESM, JSX,
|
||||
* expressions).
|
||||
*
|
||||
* When using the syntax extensions with `addResult`, ESM and expression
|
||||
* nodes will have `data.estree` fields set to ESTree `Program` node.
|
||||
*/
|
||||
export function mdxFromMarkdown(): Array<FromMarkdownExtension>
|
||||
/**
|
||||
* Create an extension for `mdast-util-to-markdown` to enable MDX (ESM, JSX,
|
||||
* expressions).
|
||||
*
|
||||
* @param {ToMarkdownOptions | null | undefined} [options]
|
||||
* Configuration.
|
||||
* @returns {ToMarkdownExtension}
|
||||
* Extension for `mdast-util-to-markdown` to enable MDX (ESM, JSX,
|
||||
* expressions).
|
||||
*/
|
||||
export function mdxToMarkdown(
|
||||
options?: ToMarkdownOptions | null | undefined
|
||||
): ToMarkdownExtension
|
||||
export type FromMarkdownExtension = import('mdast-util-from-markdown').Extension
|
||||
export type ToMarkdownExtension = import('mdast-util-to-markdown').Options
|
||||
export type MdxFlowExpression =
|
||||
import('mdast-util-mdx-expression').MdxFlowExpression
|
||||
export type MdxTextExpression =
|
||||
import('mdast-util-mdx-expression').MdxTextExpression
|
||||
export type MdxjsEsm = import('mdast-util-mdxjs-esm').MdxjsEsm
|
||||
export type MdxJsxAttributeValueExpression =
|
||||
import('mdast-util-mdx-jsx').MdxJsxAttributeValueExpression
|
||||
export type MdxJsxAttribute = import('mdast-util-mdx-jsx').MdxJsxAttribute
|
||||
export type MdxJsxExpressionAttribute =
|
||||
import('mdast-util-mdx-jsx').MdxJsxExpressionAttribute
|
||||
export type MdxJsxFlowElement = import('mdast-util-mdx-jsx').MdxJsxFlowElement
|
||||
export type MdxJsxTextElement = import('mdast-util-mdx-jsx').MdxJsxTextElement
|
||||
export type ToMarkdownOptions = import('mdast-util-mdx-jsx').ToMarkdownOptions
|
||||
Loading…
Add table
Add a link
Reference in a new issue