DefinitelyTyped/types/nodegit/clone-options.d.ts
2017-06-07 03:09:58 +01:00

14 lines
349 B
TypeScript

import { CheckoutOptions } from './checkout-options';
import { FetchOptions } from './fetch-options';
export class CloneOptions {
version?: number;
checkoutOpts?: CheckoutOptions;
fetchOpts?: FetchOptions;
bare?: number;
local?: number;
checkoutBranch?: string;
repositoryCbPayload?: void;
remoteCbPayload?: void;
}