Fix to update the code in the editor before executing (#5976)
* Fix spelling * Fix to update the code in the editor before executing
This commit is contained in:
@ -167,3 +167,17 @@ export const ZOO_STUDIO_PROTOCOL = 'zoo-studio'
|
||||
* to "open in desktop app" when present in the URL
|
||||
*/
|
||||
export const ASK_TO_OPEN_QUERY_PARAM = 'ask-open-desktop'
|
||||
|
||||
/** Real execution. */
|
||||
export const EXECUTION_TYPE_REAL = 'real' as const
|
||||
/** Mock execution. */
|
||||
export const EXECUTION_TYPE_MOCK = 'mock' as const
|
||||
/** No execution. */
|
||||
export const EXECUTION_TYPE_NONE = 'none' as const
|
||||
/**
|
||||
* Enum of engine execution kinds.
|
||||
*/
|
||||
export type ExecutionType =
|
||||
| typeof EXECUTION_TYPE_REAL
|
||||
| typeof EXECUTION_TYPE_MOCK
|
||||
| typeof EXECUTION_TYPE_NONE
|
||||
|
Reference in New Issue
Block a user