UNPKG

@builder.io/dev-tools

Version:

Builder.io Visual CMS Devtools

12 lines (11 loc) 355 B
import type { DevToolsSys } from "types"; interface RunGitOptions { exec?: string; cwd?: string; debug?: boolean; sys: DevToolsSys; timeout?: number; } export declare function runGit(args: string[], opts: RunGitOptions): Promise<string>; export declare const isGitRepoCorrupted: (stdout: string, stderr: string) => boolean; export {};