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

18 lines
387 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;
}