mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-13 08:15:21 +02:00
9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
/**
|
|
* Workflow run mode constants
|
|
* These modes determine how a workflow run is executed
|
|
*/
|
|
export const WORKFLOW_RUN_MODES = {
|
|
SMALL_WEBRTC: 'smallwebrtc',
|
|
} as const;
|
|
|
|
export type WorkflowRunMode = typeof WORKFLOW_RUN_MODES[keyof typeof WORKFLOW_RUN_MODES];
|