mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
431 B
TypeScript
19 lines
431 B
TypeScript
import { Strarray } from './str-array';
|
|
|
|
export interface DiffOptions {
|
|
version?: number;
|
|
flags?: number;
|
|
ignoreSubmodules?: number;
|
|
pathspec?: Strarray | string | string[];
|
|
notifyCb?: Function;
|
|
contextLines?: number;
|
|
interhunkLines?: number;
|
|
idAbbrev?: number;
|
|
maxSize?: number;
|
|
oldPrefix?: string;
|
|
newPrefix?: string;
|
|
payload?: any;
|
|
progressCb?: any;
|
|
[key: string]: any;
|
|
}
|