(key: string)
| 9 | export type TriggerInternalKey = (typeof TRIGGER_INTERNAL_KEYS)[number] |
| 10 | |
| 11 | export function isTriggerInternalKey(key: string): key is TriggerInternalKey { |
| 12 | return TRIGGER_INTERNAL_KEYS.includes(key as TriggerInternalKey) |
| 13 | } |
| 14 | |
| 15 | export enum BlockType { |
| 16 | PARALLEL = 'parallel', |
no outgoing calls
no test coverage detected