Added more files

This commit is contained in:
Dolan
2017-06-04 03:10:28 +01:00
parent dd5dc38dec
commit 314e6080f4
7 changed files with 134 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { CheckoutOptions } from './checkout-options';
import { FetchOptions } from './fetch-options';
export interface SubmoduleUpdateOptions {
version: number;
checkoutOpts: CheckoutOptions;
fetchOpts: FetchOptions;
cloneCheckoutStrategy: number;
}