DefinitelyTyped/types/nodegit/status-options.d.ts

10 lines
206 B
TypeScript

import { Strarray } from './str-array';
export interface StatusOptions {
version?: number;
show?: number;
flags?: number;
pathspec?: Strarray | string | string[];
[key: string]: any;
}