wrangler-action/node_modules/@vitest/snapshot/dist/environment.d.ts
2023-08-07 15:11:15 -05:00

14 lines
625 B
TypeScript

import { S as SnapshotEnvironment } from './environment-38cdead3.js';
declare class NodeSnapshotEnvironment implements SnapshotEnvironment {
getVersion(): string;
getHeader(): string;
resolveRawPath(testPath: string, rawPath: string): Promise<string>;
resolvePath(filepath: string): Promise<string>;
prepareDirectory(dirPath: string): Promise<void>;
saveSnapshotFile(filepath: string, snapshot: string): Promise<void>;
readSnapshotFile(filepath: string): Promise<string | null>;
removeSnapshotFile(filepath: string): Promise<void>;
}
export { NodeSnapshotEnvironment, SnapshotEnvironment };