trigger.dev
Version:
A Command-Line Interface for Trigger.dev projects
29 lines (28 loc) • 1.8 kB
TypeScript
import { BuildTarget } from "@trigger.dev/core/v3";
export declare const devRunWorker: string;
export declare const devIndexWorker: string;
export declare const managedRunController: string;
export declare const managedRunWorker: string;
export declare const managedIndexController: string;
export declare const managedIndexWorker: string;
export declare const unmanagedRunController: string;
export declare const unmanagedRunWorker: string;
export declare const unmanagedIndexController: string;
export declare const unmanagedIndexWorker: string;
export declare const telemetryEntryPoint: string;
export declare const devEntryPoints: string[];
export declare const managedEntryPoints: string[];
export declare const unmanagedEntryPoints: string[];
export declare const esmShimPath: string;
export declare const shims: string[];
export declare function isLoaderEntryPoint(entryPoint: string): boolean;
export declare function isRunWorkerForTarget(entryPoint: string, target: BuildTarget): boolean;
export declare function getRunWorkerForTarget(target: BuildTarget): string;
export declare function isRunControllerForTarget(entryPoint: string, target: BuildTarget): boolean;
export declare function getRunControllerForTarget(target: BuildTarget): string | undefined;
export declare function isIndexWorkerForTarget(entryPoint: string, target: BuildTarget): boolean;
export declare function getIndexWorkerForTarget(target: BuildTarget): string;
export declare function isIndexControllerForTarget(entryPoint: string, target: BuildTarget): boolean;
export declare function getIndexControllerForTarget(target: BuildTarget): string | undefined;
export declare function isConfigEntryPoint(entryPoint: string): boolean;
export declare function isInitEntryPoint(entryPoint: string, triggerDirs: string[]): boolean;