export type CursorLineColor = [string, string]; export type CursorLineWidth = [number, number]; export interface ICursorOption { lineColor?: string | CursorLineColor; lineWidth?: number | CursorLineWidth; } export interface IResolvedCursorOption { lineColor: CursorLineColor; lineWidth: CursorLineWidth; }