mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
62 lines
1008 B
TypeScript
62 lines
1008 B
TypeScript
import { CheckoutOptions } from './checkout-options';
|
|
import { FetchOptions } from './fetch-options';
|
|
|
|
export class CloneOptions {
|
|
/**
|
|
*
|
|
*
|
|
* @type {number}
|
|
* @memberof CloneOptions
|
|
*/
|
|
version?: number;
|
|
/**
|
|
*
|
|
*
|
|
* @type {CheckoutOptions}
|
|
* @memberof CloneOptions
|
|
*/
|
|
checkoutOpts?: CheckoutOptions;
|
|
/**
|
|
*
|
|
*
|
|
* @type {FetchOptions}
|
|
* @memberof CloneOptions
|
|
*/
|
|
fetchOpts?: FetchOptions;
|
|
/**
|
|
*
|
|
*
|
|
* @type {number}
|
|
* @memberof CloneOptions
|
|
*/
|
|
bare?: number;
|
|
/**
|
|
*
|
|
*
|
|
* @type {number}
|
|
* @memberof CloneOptions
|
|
*/
|
|
local?: number;
|
|
/**
|
|
*
|
|
*
|
|
* @type {string}
|
|
* @memberof CloneOptions
|
|
*/
|
|
checkoutBranch?: string;
|
|
/**
|
|
*
|
|
*
|
|
* @type {*}
|
|
* @memberof CloneOptions
|
|
*/
|
|
repositoryCbPayload?: any;
|
|
/**
|
|
*
|
|
*
|
|
* @type {*}
|
|
* @memberof CloneOptions
|
|
*/
|
|
remoteCbPayload?: any;
|
|
}
|