9 lines
293 B
TypeScript
9 lines
293 B
TypeScript
![]() |
/// <reference types="node" />
|
||
|
import type fsMod from 'node:fs';
|
||
|
import type { Plugin } from 'vite';
|
||
|
import type { AstroSettings } from '../@types/astro.js';
|
||
|
export declare function astroContentImportPlugin({ fs, settings, }: {
|
||
|
fs: typeof fsMod;
|
||
|
settings: AstroSettings;
|
||
|
}): Plugin[];
|