| 66 | * - Objects have a max of 50 properties. Arrays are considered 1 property. |
| 67 | */ |
| 68 | export interface EventData { |
| 69 | [key: string]: boolean | number | string | EventData | boolean[] | number[] | string[] | EventData[]; |
| 70 | } |
| 71 | |
| 72 | export type EventProperties = { |
| 73 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected