aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/lerna-get-packages/index.d.ts
blob: 0650a542ce61f6976c70aa2d674440b1287ed9e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
declare interface LernaPackage {
    location: string;
    package: {
        private?: boolean;
        version: string;
        name: string;
        main?: string;
        config?: {
            additionalTsTypings?: string[];
        };
    };
}
declare function lernaGetPackages(path: string): LernaPackage[];
declare module 'lerna-get-packages' {
    export = lernaGetPackages;
}