mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
387 B
TypeScript
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;
|
|
}
|