Interface ContributionResult

The settled outcome (the stream's return value).

interface ContributionResult {
    branchName: string;
    commitSha: string;
    mode: "direct-commit" | "new-branch-pr" | "extend-existing";
    prNumber?: number;
    prUrl?: string;
    treeSha: string;
}

Properties

branchName: string
commitSha: string
mode: "direct-commit" | "new-branch-pr" | "extend-existing"
prNumber?: number
prUrl?: string
treeSha: string