web-snaps
Version:
Browser automation with automatic snapshotting.
9 lines (8 loc) • 348 B
TypeScript
import { type WebFlow } from '../web-flow/web-flow.js';
import { type InProgressWebSnap } from './web-snap.js';
/**
* Save a {@link WebSnap} to the file system.
*
* @category Internal
*/
export declare function saveWebSnap(webFlow: Readonly<Pick<WebFlow, 'webSnapPaths'>>, webSnap: Readonly<InProgressWebSnap>, silent: boolean): Promise<void>;