mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
360 B
TypeScript
17 lines
360 B
TypeScript
import { Strarray } from './str-array';
|
|
|
|
export interface DiffOptions {
|
|
version: number;
|
|
flags: number;
|
|
ignoreSubmodules: number;
|
|
pathspec: Strarray;
|
|
notifyCb: Function;
|
|
notifyPayload: void;
|
|
contextLines: number;
|
|
interhunkLines: number;
|
|
idAbbrev: number;
|
|
maxSize: number;
|
|
oldPrefix: string;
|
|
newPrefix: string;
|
|
}
|