| 35 | } |
| 36 | |
| 37 | interface PointOptions { |
| 38 | time: number; |
| 39 | editable?: boolean; |
| 40 | color?: string; |
| 41 | labelText?: string; |
| 42 | id?: string; |
| 43 | [userAttributes: string]: unknown; |
| 44 | } |
| 45 | |
| 46 | interface Point extends PointOptions { |
| 47 | update: (options: PointOptions) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected