DefinitelyTyped/types/nodegit/diff-options.d.ts
2017-06-08 02:31:06 +01:00

17 lines
359 B
TypeScript

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