UNPKG

@notelix/web-marker

Version:
8 lines (7 loc) 276 B
import Context from "./Context"; interface HighlightPainter { paintHighlight: (context: Context, element: HTMLElement) => void; beforePaintHighlight?: (context: Context) => void; afterPaintHighlight?: (context: Context) => void; } export default HighlightPainter;