UNPKG

git-command-helper

Version:
8 lines (7 loc) 194 B
export interface DynamicObject { [key: string]: any; } export interface StatusResult extends DynamicObject { changes: "modified" | "added" | "deleted" | "untracked"; path: string; }