trigger.dev
Version:
A Command-Line Interface for Trigger.dev projects
12 lines (11 loc) • 528 B
TypeScript
import { Command } from "commander";
export declare function configureInitCommand(program: Command): Command;
export declare function initCommand(dir: string, options: unknown): Promise<void | undefined>;
export interface InstallPackagesOutputter {
startSDK: () => void;
installedSDK: () => void;
startBuild: () => void;
installedBuild: () => void;
stoppedWithError: () => void;
}
export declare function installPackages(projectDir: string, tag: string, outputter?: InstallPackagesOutputter): Promise<void>;