diff --git a/lib/index.ts b/lib/index.ts index bbf54c2..b46e05b 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -71,17 +71,16 @@ export type { } from './interfaces'; // Ghostty WASM components (for advanced usage) -export { Ghostty, GhosttyTerminal, KeyEncoder, CellFlags, KeyEncoderOption } from './ghostty'; -export type { - KeyEvent, - KeyAction, - Key, - Mods, - GhosttyCell, - RGB, - Cursor, - TerminalHandle, -} from './types'; +export { + Ghostty, + GhosttyTerminal, + KeyEncoder, + CellFlags, + DirtyState, + KeyEncoderOption, +} from './ghostty'; +export { Key, KeyAction, Mods } from './types'; +export type { KeyEvent, GhosttyCell, RGB, Cursor, TerminalHandle } from './types'; // Low-level components (for custom integrations) export { CanvasRenderer } from './renderer';