Files
Tiber365/node_modules/@astrojs/markdown-remark/dist/remark-collect-images.d.ts
2025-07-24 18:46:24 +02:00

5 lines
263 B
TypeScript

import type { Root } from 'mdast';
import type { VFile } from 'vfile';
import type { AstroMarkdownProcessorOptions } from './types.js';
export declare function remarkCollectImages(opts: AstroMarkdownProcessorOptions['image']): (tree: Root, vfile: VFile) => void;