Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down