Files
webshell/src/terminal/CursorProperties.ts
2026-03-24 13:58:59 +01:00

7 lines
139 B
TypeScript

export type CursorPosition = {
col: number,
row: number,
}
export type CursorStyle = 'bar' | 'underline' | 'cell' | 'cell_hollow'