mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-19 02:06:20 +03:00
14 lines
357 B
Zig
14 lines
357 B
Zig
//! Types and functions related to Kitty protocols.
|
|
|
|
const key = @import("kitty/key.zig");
|
|
pub const color = @import("kitty/color.zig");
|
|
pub const graphics = @import("kitty/graphics.zig");
|
|
|
|
pub const KeyFlags = key.Flags;
|
|
pub const KeyFlagStack = key.FlagStack;
|
|
pub const KeySetMode = key.SetMode;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|