🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
17
node_modules/@mdx-js/mdx/lib/util/create-format-aware-processors.d.ts
generated
vendored
Normal file
17
node_modules/@mdx-js/mdx/lib/util/create-format-aware-processors.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* Create smart processors to handle different formats.
|
||||
*
|
||||
* @param {CompileOptions | null | undefined} [compileOptions]
|
||||
* configuration.
|
||||
* @return {{extnames: Array<string>, process: process, processSync: processSync}}
|
||||
* Smart processor.
|
||||
*/
|
||||
export function createFormatAwareProcessors(compileOptions?: CompileOptions | null | undefined): {
|
||||
extnames: Array<string>;
|
||||
process: (vfileCompatible: VFileCompatible) => Promise<VFile>;
|
||||
processSync: (vfileCompatible: VFileCompatible) => VFile;
|
||||
};
|
||||
export type Processor = import('unified').Processor;
|
||||
export type VFile = import('vfile').VFile;
|
||||
export type VFileCompatible = import('vfile').VFileCompatible;
|
||||
export type CompileOptions = import('../compile.js').CompileOptions;
|
||||
Loading…
Add table
Add a link
Reference in a new issue