Improve docs

This commit is contained in:
Andras Schmelczer 2025-07-06 12:28:46 +01:00
commit 077ba9416a
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
6 changed files with 23 additions and 162 deletions

View file

@ -16,9 +16,6 @@ export interface TextWithCursors {
cursors: null | undefined | CursorPosition[];
}
/**
* Represents a cursor position with a unique identifier.
*/
export interface CursorPosition {
/** Unique identifier for the cursor */
id: number;
@ -42,9 +39,6 @@ export interface SpanWithHistory {
history: History;
}
/**
* Supported tokenizer types for text processing.
*/
export type Tokenizer = "word" | "character";
let isInitialised = false;