mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
20 lines
572 B
TypeScript
20 lines
572 B
TypeScript
// Type definitions for lerna-get-packages 1.0
|
|
// Project: https://github.com/azz/lerna-get-packages
|
|
// Definitions by: Leonid Logvinov <https://github.com/LogvinovLeon>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface LernaPackage {
|
|
location: string;
|
|
package: {
|
|
private?: boolean;
|
|
version: string;
|
|
name: string;
|
|
main?: string;
|
|
config?: {
|
|
additionalTsTypings?: string[];
|
|
};
|
|
};
|
|
}
|
|
declare function lernaGetPackages(path: string): LernaPackage[];
|
|
export = lernaGetPackages;
|