Added CherrypickOptions

This commit is contained in:
Dolan
2017-06-08 00:39:50 +01:00
parent 959bd0bf84
commit 45e2febe28
3 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { MergeOptions } from './merge-options';
import { CheckoutOptions } from './checkout-options';
export interface CherrypickOptions {
version: number;
mainline: number;
mergeOpts: MergeOptions;
checkoutOpts: CheckoutOptions;
}

View File

@@ -16,6 +16,7 @@ export { CertX509 } from './cert-x509';
export { Cert } from './cert';
export { CheckoutOptions } from './checkout-options';
export { Checkout } from './checkout';
export { CherrypickOptions } from './cherry-pick-options';
export { Cherrypick } from './cherry-pick';
export { CloneOptions } from './clone-options';
export { Clone } from './clone';

View File

@@ -29,6 +29,7 @@
"cert.d.ts",
"checkout-options.d.ts",
"checkout.d.ts",
"cherry-pick-options.d.ts",
"cherry-pick.d.ts",
"clone-options.d.ts",
"clone.d.ts",