@materia/interfaces
Version:
15 lines (14 loc) • 335 B
TypeScript
import { IGitStatus } from "./git-status.model";
export interface IGitWorkingCopy {
files: IGitStatus[];
statusSelected: number;
ahead: number;
behind: number;
tracking: string;
conflicted: any[];
created: boolean;
deleted: boolean;
modified: boolean;
notAdded: boolean;
renamed: boolean;
}