My agentic slop goes here. Not intended for anyone else!
1(* Kitty Terminal Graphics Protocol
2
3 This library implements the Kitty terminal graphics protocol, allowing
4 OCaml programs to display images in terminals that support the protocol
5 (Kitty, WezTerm, Konsole, Ghostty, etc.). *)
6
7(* Re-export types at top level *)
8type format = Kgp_types.format
9type transmission = Kgp_types.transmission
10type compression = Kgp_types.compression
11type quiet = Kgp_types.quiet
12type cursor = Kgp_types.cursor
13type composition = Kgp_types.composition
14type delete = Kgp_types.delete
15type animation_state = Kgp_types.animation_state
16
17(* Module aliases *)
18module Format = Kgp_types.Format
19module Transmission = Kgp_types.Transmission
20module Compression = Kgp_types.Compression
21module Quiet = Kgp_types.Quiet
22module Cursor = Kgp_types.Cursor
23module Composition = Kgp_types.Composition
24module Delete = Kgp_types.Delete
25module Placement = Kgp_placement
26module Frame = Kgp_frame
27module Animation = Kgp_animation
28module Compose = Kgp_compose
29module Command = Kgp_command
30module Response = Kgp_response
31module Unicode_placeholder = Kgp_unicode
32module Detect = Kgp_detect