ISPO SDK
    Preparing search index...

    Interface RemoteCodingGitStatusResult

    Markdown
    interface RemoteCodingGitStatusResult {
        files: readonly {
            additions?: number;
            deletions?: number;
            path: string;
            staged: boolean;
            status: string;
        }[];
        sourceRevision: string;
        truncated: boolean;
    }
    Index
    files: readonly {
        additions?: number;
        deletions?: number;
        path: string;
        staged: boolean;
        status: string;
    }[]
    sourceRevision: string
    truncated: boolean