UNPKG

343 BTypeScriptView Raw
1import { CheckoutOptions } from "./checkout-options";
2import { FetchOptions } from "./fetch-options";
3
4export interface SubmoduleUpdateOptions {
5 version?: number | undefined;
6 checkoutOpts?: CheckoutOptions | undefined;
7 fetchOpts?: FetchOptions | undefined;
8 cloneCheckoutStrategy?: number | undefined;
9 [key: string]: any;
10}