mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
36 lines
1.9 KiB
TypeScript
36 lines
1.9 KiB
TypeScript
/**
|
|
* Wrap the estree in `MDXContent`.
|
|
*
|
|
* @param {Readonly<ProcessorOptions>} options
|
|
* Configuration.
|
|
* @returns
|
|
* Transform.
|
|
*/
|
|
export function recmaDocument(options: Readonly<ProcessorOptions>): (tree: Program, file: VFile) => undefined;
|
|
export type CallExpression = import('estree-jsx').CallExpression;
|
|
export type Directive = import('estree-jsx').Directive;
|
|
export type ExportAllDeclaration = import('estree-jsx').ExportAllDeclaration;
|
|
export type ExportDefaultDeclaration = import('estree-jsx').ExportDefaultDeclaration;
|
|
export type ExportNamedDeclaration = import('estree-jsx').ExportNamedDeclaration;
|
|
export type ExportSpecifier = import('estree-jsx').ExportSpecifier;
|
|
export type Expression = import('estree-jsx').Expression;
|
|
export type FunctionDeclaration = import('estree-jsx').FunctionDeclaration;
|
|
export type Identifier = import('estree-jsx').Identifier;
|
|
export type ImportDeclaration = import('estree-jsx').ImportDeclaration;
|
|
export type ImportDefaultSpecifier = import('estree-jsx').ImportDefaultSpecifier;
|
|
export type ImportExpression = import('estree-jsx').ImportExpression;
|
|
export type ImportSpecifier = import('estree-jsx').ImportSpecifier;
|
|
export type JSXElement = import('estree-jsx').JSXElement;
|
|
export type JSXFragment = import('estree-jsx').JSXFragment;
|
|
export type Literal = import('estree-jsx').Literal;
|
|
export type ModuleDeclaration = import('estree-jsx').ModuleDeclaration;
|
|
export type Node = import('estree-jsx').Node;
|
|
export type Program = import('estree-jsx').Program;
|
|
export type Property = import('estree-jsx').Property;
|
|
export type SimpleLiteral = import('estree-jsx').SimpleLiteral;
|
|
export type SpreadElement = import('estree-jsx').SpreadElement;
|
|
export type Statement = import('estree-jsx').Statement;
|
|
export type VariableDeclarator = import('estree-jsx').VariableDeclarator;
|
|
export type VFile = import('vfile').VFile;
|
|
export type ProcessorOptions = import('../core.js').ProcessorOptions;
|
|
//# sourceMappingURL=recma-document.d.ts.map
|