mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 19:59:02 +08:00
Added documentation
This commit is contained in:
24
types/nodegit/submodule-update-options.d.ts
vendored
24
types/nodegit/submodule-update-options.d.ts
vendored
@@ -2,8 +2,32 @@ import { CheckoutOptions } from './checkout-options';
|
||||
import { FetchOptions } from './fetch-options';
|
||||
|
||||
export interface SubmoduleUpdateOptions {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SubmoduleUpdateOptions
|
||||
*/
|
||||
version?: number;
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @type {CheckoutOptions}
|
||||
* @memberof SubmoduleUpdateOptions
|
||||
*/
|
||||
checkoutOpts?: CheckoutOptions;
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @type {FetchOptions}
|
||||
* @memberof SubmoduleUpdateOptions
|
||||
*/
|
||||
fetchOpts?: FetchOptions;
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SubmoduleUpdateOptions
|
||||
*/
|
||||
cloneCheckoutStrategy?: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user