trigger.dev
Version:
A Command-Line Interface for Trigger.dev projects
6 lines (5 loc) • 402 B
TypeScript
import { Command } from "commander";
import { LoginResultOk } from "../utilities/session.js";
export declare function configurePreviewCommand(program: Command): void;
export declare function previewArchiveCommand(dir: string, options: unknown): Promise<boolean | undefined>;
export declare function archivePreviewBranch(authorization: LoginResultOk, branch: string, project: string): Promise<boolean>;