🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
27
node_modules/@mdx-js/mdx/lib/evaluate.d.ts
generated
vendored
Normal file
27
node_modules/@mdx-js/mdx/lib/evaluate.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/**
|
||||
* Evaluate MDX.
|
||||
*
|
||||
* @param {VFileCompatible} vfileCompatible
|
||||
* MDX document to parse (`string`, `Buffer`, `vfile`, anything that can be
|
||||
* given to `vfile`).
|
||||
* @param {EvaluateOptions} evaluateOptions
|
||||
* Configuration for evaluation.
|
||||
* @return {Promise<ExportMap>}
|
||||
* Export map.
|
||||
*/
|
||||
export function evaluate(vfileCompatible: VFileCompatible, evaluateOptions: EvaluateOptions): Promise<ExportMap>;
|
||||
/**
|
||||
* Synchronously evaluate MDX.
|
||||
*
|
||||
* @param {VFileCompatible} vfileCompatible
|
||||
* MDX document to parse (`string`, `Buffer`, `vfile`, anything that can be
|
||||
* given to `vfile`).
|
||||
* @param {EvaluateOptions} evaluateOptions
|
||||
* Configuration for evaluation.
|
||||
* @return {ExportMap}
|
||||
* Export map.
|
||||
*/
|
||||
export function evaluateSync(vfileCompatible: VFileCompatible, evaluateOptions: EvaluateOptions): ExportMap;
|
||||
export type ExportMap = import('mdx/types.js').MDXModule;
|
||||
export type VFileCompatible = import('vfile').VFileCompatible;
|
||||
export type EvaluateOptions = import('./util/resolve-evaluate-options.js').EvaluateOptions;
|
||||
Loading…
Add table
Add a link
Reference in a new issue