mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-16 19:09:18 +08:00
Added CherrypickOptions
This commit is contained in:
9
types/nodegit/cherry-pick-options.d.ts
vendored
Normal file
9
types/nodegit/cherry-pick-options.d.ts
vendored
Normal 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;
|
||||
}
|
||||
1
types/nodegit/index.d.ts
vendored
1
types/nodegit/index.d.ts
vendored
@@ -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';
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user