aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts/src/globals.d.ts
blob: cb6a61b55858db090d9df2689e33252a493ffb6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
declare module 'async-child-process';
declare module 'publish-release';
declare module 'es6-promisify';
declare module 'semver-diff';

declare module 'prompt' {
    const start: () => void;
    const get: (promptMessages: string[], callback: (err: Error, result: string) => void) => void;
}

// semver-sort declarations
declare module 'semver-sort' {
    const desc: (versions: string[]) => string[];
}

declare module 'promisify-child-process';