@types/nodegit
Version:
TypeScript definitions for nodegit
14 lines (12 loc) • 419 B
TypeScript
import { CheckoutOptions } from "./checkout-options";
import { FetchOptions } from "./fetch-options";
export class CloneOptions {
version?: number | undefined;
checkoutOpts?: CheckoutOptions | undefined;
fetchOpts?: FetchOptions | undefined;
bare?: number | undefined;
local?: number | undefined;
checkoutBranch?: string | undefined;
repositoryCbPayload?: any;
remoteCbPayload?: any;
}