mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 08:46:08 +03:00
14 lines
385 B
Zig
14 lines
385 B
Zig
pub const lut = @import("lut.zig");
|
|
|
|
const grapheme = @import("grapheme.zig");
|
|
const props = @import("props.zig");
|
|
pub const table = props.table;
|
|
pub const Properties = props.Properties;
|
|
pub const getProperties = props.get;
|
|
pub const graphemeBreak = grapheme.graphemeBreak;
|
|
pub const GraphemeBreakState = grapheme.BreakState;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|