(eventType: string)
| 53 | ) |
| 54 | |
| 55 | export function isSimRuleEventType(eventType: string): eventType is SimRuleEventType { |
| 56 | return (SIM_RULE_EVENT_TYPES as readonly string[]).includes(eventType) |
| 57 | } |
| 58 | |
| 59 | /** Cooldown between firings of the same rule-based subscription. */ |
| 60 | export const SIM_RULE_COOLDOWN_HOURS = 1 |
no outgoing calls
no test coverage detected