trigger.dev
Version:
A Command-Line Interface for Trigger.dev projects
9 lines (8 loc) • 615 B
TypeScript
import { Command } from "commander";
import { CliApiClient } from "../apiClient.js";
export declare function configureDeployCommand(program: Command): Command;
export declare function deployCommand(dir: string, options: unknown): Promise<void | undefined>;
export declare function syncEnvVarsWithServer(apiClient: CliApiClient, projectRef: string, environmentSlug: string, envVars: Record<string, string>, parentEnvVars?: Record<string, string>): Promise<import("@trigger.dev/core/v3/zodfetch").ApiResult<{
success: boolean;
}>>;
export declare function verifyDirectory(dir: string, projectPath: string): void;