| 21 | type WaveformColor = string | LinearGradientColor; |
| 22 | |
| 23 | interface SegmentOptions { |
| 24 | startTime: number; |
| 25 | endTime: number; |
| 26 | editable?: boolean; |
| 27 | color?: WaveformColor; |
| 28 | labelText?: string; |
| 29 | id?: string; |
| 30 | [userAttributes: string]: unknown; |
| 31 | } |
| 32 | |
| 33 | interface Segment extends SegmentOptions { |
| 34 | update: (options: SegmentOptions) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected