| 6 | type FeatureKey = "text-selection" | "element-click" | "multi-select" | "area-selection" | "animation-pause"; |
| 7 | |
| 8 | interface Feature { |
| 9 | key: FeatureKey; |
| 10 | label: string; |
| 11 | caption: string; |
| 12 | } |
| 13 | |
| 14 | const features: Feature[] = [ |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…