1 | declare function bumpRelease(releaseType: any, options: any): Promise<void>;
|
2 | declare function createDiffReleasesBranch(): void;
|
3 | declare function diffRelease(sourceRelease: string, destinationRelease: string, argv?: string[], options?: {
|
4 | branch?: string;
|
5 | pipe?: boolean;
|
6 | }): any;
|
7 | declare function printCurrentRelease(): void;
|
8 | declare function getCurrentRelease(skipNext?: boolean): any;
|
9 | declare function getAllReleases(path?: any): any;
|
10 | declare function formatRelease(releaseJson: any): string;
|
11 | declare function deformatRelease(releaseString: any): {
|
12 | major: any;
|
13 | minor: any;
|
14 | patch: any;
|
15 | next: boolean;
|
16 | };
|
17 | export declare const Release: {
|
18 | bump: typeof bumpRelease;
|
19 | createDiffBranch: typeof createDiffReleasesBranch;
|
20 | printCurrent: typeof printCurrentRelease;
|
21 | current: typeof getCurrentRelease;
|
22 | all: typeof getAllReleases;
|
23 | diff: typeof diffRelease;
|
24 | format: typeof formatRelease;
|
25 | deformat: typeof deformatRelease;
|
26 | };
|
27 | export {};
|