UNPKG

trigger.dev

Version:

A Command-Line Interface for Trigger.dev projects

5 lines (4 loc) 387 B
import type { Command } from "commander"; import type { 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>;