trigger.dev
Version:
A Command-Line Interface for Trigger.dev projects
12 lines (11 loc) • 602 B
TypeScript
import { Command } from "commander";
declare const targets: readonly ["claude-code", "cursor", "vscode", "windsurf", "gemini-cli", "cline", "agents.md", "amp", "kilo", "ruler"];
export declare function configureInstallRulesCommand(program: Command): Command;
export declare function installRulesCommand(options: unknown): Promise<void | undefined>;
export type InstallRulesWizardOptions = {
target?: Array<(typeof targets)[number]>;
manifestPath?: string;
branch?: string;
};
export declare function initiateRulesInstallWizard(options: InstallRulesWizardOptions): Promise<void>;
export {};