lerna
Version:
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository
9 lines (8 loc) • 325 B
TypeScript
import type { CommandModule } from "yargs";
import { RunCommandConfigOptions } from ".";
/**
* @see https://github.com/yargs/yargs/blob/main/docs/advanced.md#providing-a-command-module
*/
declare const command: CommandModule<object, RunCommandConfigOptions>;
export default command;
export { command as "module.exports" };