mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-25 08:48:13 +02:00
10 lines
267 B
TypeScript
10 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];
|