UNPKG

419 BTypeScriptView Raw
1import { CheckoutOptions } from './checkout-options';
2import { FetchOptions } from './fetch-options';
3
4export class CloneOptions {
5 version?: number | undefined;
6 checkoutOpts?: CheckoutOptions | undefined;
7 fetchOpts?: FetchOptions | undefined;
8 bare?: number | undefined;
9 local?: number | undefined;
10 checkoutBranch?: string | undefined;
11 repositoryCbPayload?: any;
12 remoteCbPayload?: any;
13}