trigger.dev
Version:
A Command-Line Interface for Trigger.dev projects
5 lines (4 loc) • 377 B
TypeScript
import { Command } from "commander";
import { CliApiClient } from "../../apiClient.js";
export declare function configureWorkersBuildCommand(program: Command): Command;
export declare function syncEnvVarsWithServer(apiClient: CliApiClient, projectRef: string, environmentSlug: string, envVars: Record<string, string>, parentEnvVars?: Record<string, string>): Promise<boolean>;