vibe-tools
Version:
CLI tools for AI agents
15 lines (14 loc) • 459 B
TypeScript
/**
* Checks if Playwright is available and returns its version information
* @returns Object containing availability status and version info
*/
export declare function checkPlaywright(): Promise<{
available: boolean;
version?: string;
error?: string;
}>;
/**
* Ensures Playwright is available before proceeding
* @returns true if Playwright is available, throws error if not
*/
export declare function ensurePlaywright(): Promise<boolean>;