astro-ghostcms/.pnpm-store/v3/files/54/72dcb3e40d0a5d251d8e79a6a68...

10 lines
335 B
Plaintext

/// <reference types="node" resolution-mode="require"/>
import type fsType from 'node:fs';
interface LoadConfigWithViteOptions {
root: string;
configPath: string;
fs: typeof fsType;
}
export declare function loadConfigWithVite({ configPath, fs, root, }: LoadConfigWithViteOptions): Promise<Record<string, any>>;
export {};