Move smallwebrtc to constants

This commit is contained in:
Abhishek Kumar 2025-10-04 11:05:47 +05:30
parent 5ab93767dd
commit b86a460062
3 changed files with 13 additions and 2 deletions

View file

@ -0,0 +1,9 @@
/**
* 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];