mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
28 lines
700 B
TypeScript
28 lines
700 B
TypeScript
import { Strarray } from './str-array';
|
|
import { Tree } from './tree';
|
|
import { Index } from './index';
|
|
|
|
export class CheckoutOptions {
|
|
version?: number;
|
|
checkoutStrategy?: number;
|
|
disableFilters?: number;
|
|
dirMode?: number;
|
|
fileMode?: number;
|
|
fileOpenFlags?: number;
|
|
notifyFlags?: number;
|
|
notifyCb?: any;
|
|
notifyPayload?: undefined;
|
|
progressCb?: any;
|
|
progressPayload?: undefined;
|
|
paths?: Strarray | string | string[];
|
|
baseline?: Tree;
|
|
baselineIndex?: Index;
|
|
targetDirectory?: string;
|
|
ancestorLabel?: string;
|
|
ourLabel?: string;
|
|
theirLabel?: string;
|
|
perfdataCb?: any;
|
|
perfdataPayload?: undefined;
|
|
[key: string]: any;
|
|
}
|