7 lines
139 B
TypeScript
7 lines
139 B
TypeScript
export type CursorPosition = {
|
|
col: number,
|
|
row: number,
|
|
}
|
|
|
|
export type CursorStyle = 'bar' | 'underline' | 'cell' | 'cell_hollow'
|