IOweb/node_modules/@astrojs/mdx/dist/rehype-apply-frontmatter-export.d.ts
2026-07-03 15:07:38 -05:00

10 lines
291 B
TypeScript

import type { Root } from 'hast';
import type { VFile } from 'vfile';
declare module 'vfile' {
interface DataMap {
applyFrontmatterExport?: {
srcDir?: URL;
};
}
}
export declare function rehypeApplyFrontmatterExport(): (tree: Root, vfile: VFile) => void;