Files
DeviceManager/node_modules/@vitest/snapshot/dist/environment.d.ts

15 lines
625 B
TypeScript

import { S as SnapshotEnvironment } from './environment-b0891b0a.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 };