UNPKG

301 BTypeScriptView Raw
1import { MergeOptions } from './merge-options';
2import { CheckoutOptions } from './checkout-options';
3
4export interface CherrypickOptions {
5 version?: number | undefined;
6 mainline?: number | undefined;
7 mergeOpts?: MergeOptions | undefined;
8 checkoutOpts?: CheckoutOptions | undefined;
9}