| 5 | import { Component, CSSProperties } from "react"; |
| 6 | |
| 7 | export interface Annotation { |
| 8 | row: number; |
| 9 | column: number; |
| 10 | type: string; |
| 11 | text: string; |
| 12 | } |
| 13 | |
| 14 | export interface Marker { |
| 15 | startRow: number; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…