UNPKG

creevey

Version:

Cross-browser screenshot testing tool for Storybook with fancy UI Runner

8 lines (7 loc) 458 B
import { Config, DockerAuth } from '../types.js'; export declare function pullImages(images: string[], { auth, platform }?: { auth?: DockerAuth; platform?: string; }): Promise<void>; export declare function runImage(image: string, args: string[], options: Record<string, unknown>, debug: boolean): Promise<string>; export declare function initDocker(config: Config, browser: string | undefined, startContainer: () => Promise<string>): Promise<void>;