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

12 lines
441 B
TypeScript

interface SnapshotEnvironment {
getVersion(): string;
getHeader(): string;
resolvePath(filepath: string): Promise<string>;
resolveRawPath(testPath: string, rawPath: string): Promise<string>;
saveSnapshotFile(filepath: string, snapshot: string): Promise<void>;
readSnapshotFile(filepath: string): Promise<string | null>;
removeSnapshotFile(filepath: string): Promise<void>;
}
export { SnapshotEnvironment as S };