DefinitelyTyped/types/nodegit/diff-options.d.ts
2017-11-05 19:46:36 +02:00

19 lines
411 B
TypeScript

import { Strarray } from './str-array';
export interface DiffOptions {
version?: number;
flags?: number;
ignoreSubmodules?: number;
pathspec?: Strarray;
notifyCb?: Function;
contextLines?: number;
interhunkLines?: number;
idAbbrev?: number;
maxSize?: number;
oldPrefix?: string;
newPrefix?: string;
payload?: any;
progressCb?: any;
[key: string]: any;
}