UNPKG

978 BTypeScriptView Raw
1declare function bumpRelease(releaseType: any, options: any): Promise<void>;
2declare function createDiffReleasesBranch(): void;
3declare function diffRelease(sourceRelease: string, destinationRelease: string, argv?: string[], options?: {
4 branch?: string;
5 pipe?: boolean;
6}): any;
7declare function printCurrentRelease(): void;
8declare function getCurrentRelease(skipNext?: boolean): any;
9declare function getAllReleases(path?: any): any;
10declare function formatRelease(releaseJson: any): string;
11declare function deformatRelease(releaseString: any): {
12 major: any;
13 minor: any;
14 patch: any;
15 next: boolean;
16};
17export 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};
27export {};