(type: keyof TriggerDotDevGlobalAPI)
| 34 | } |
| 35 | |
| 36 | export function unregisterGlobal(type: keyof TriggerDotDevGlobalAPI) { |
| 37 | const api = _global[GLOBAL_TRIGGER_DOT_DEV_KEY]; |
| 38 | |
| 39 | if (api) { |
| 40 | delete api[type]; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | type TriggerDotDevGlobal = { |
| 45 | [GLOBAL_TRIGGER_DOT_DEV_KEY]?: TriggerDotDevGlobalAPI; |