fix(zterm): export corresponding necessary types
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 36s

This commit is contained in:
2024-11-10 17:07:53 +01:00
parent 1dbdf3b422
commit 35a7f9cc02
2 changed files with 4 additions and 1 deletions

View File

@@ -206,5 +206,5 @@ fn getReportMode(ps: u8) ReportMode {
}
test {
_ = @import("terminal/style.zig");
_ = Style;
}

View File

@@ -4,8 +4,11 @@ const terminal = @import("terminal.zig");
// public import / exports
pub const App = @import("app.zig").App;
pub const Renderer = @import("render.zig");
pub const Key = terminal.Key;
pub const Position = terminal.Position;
pub const Size = terminal.Size;
pub const Style = terminal.Style;
test {
_ = @import("terminal.zig");