/// import { MiniProgramCore } from '../types'; import { CIProject } from './ciProject'; type IStat = MiniProgramCore.IStat; export declare class CIProjectWithMockBuffer extends CIProject { private mockBuffer; setMockFileCache(mockedProject: object): void; getFile(prefix: string, filePath: string): Buffer; stat(prefix: string, filePath: string): IStat | undefined; } export {};