/** * PR Check Command * * Validates that server/client/mobile builds succeed before PR merge. * Per STANDARDS: Delegates to pipeline plugin for routing. * * Flow: * - When running on server (GITHUB_ACTIONS=true): runs builds, reports to GitHub * - When running from dev machine: SSHs to staging and runs pr-check there (if canReach=ssh) */ export interface PRCheckOptions { rootDir?: string; staging?: boolean; } export interface PRCheckResult { success: boolean; error?: string; } /** * Run PR check - entry point for CLI */ export declare function prCheck(options?: PRCheckOptions): Promise; export default prCheck; //# sourceMappingURL=pr-check.d.ts.map