diff --git a/lib/nocterm.dart b/lib/nocterm.dart index 3e8ad90..dd09b16 100644 --- a/lib/nocterm.dart +++ b/lib/nocterm.dart @@ -35,6 +35,7 @@ export 'src/components/terminal_xterm.dart'; export 'nocterm_test.dart'; export 'src/framework/framework.dart'; export 'src/framework/axis.dart'; +export 'src/framework/terminal_canvas.dart' show TerminalCanvas, BorderStyle; export 'src/components/spacer.dart'; export 'src/components/divider.dart'; diff --git a/lib/src/components/ascii_text.dart b/lib/src/components/ascii_text.dart index 6312098..ff86d43 100644 --- a/lib/src/components/ascii_text.dart +++ b/lib/src/components/ascii_text.dart @@ -5,7 +5,8 @@ import 'render_text.dart' show TextAlign; // Re-export for convenience export 'ascii_font.dart' show AsciiFont, AsciiGlyph; -export 'render_ascii_text.dart' show AsciiLayoutConfig, AsciiLayoutResult; +export 'render_ascii_text.dart' + show AsciiLayoutConfig, AsciiLayoutResult, AsciiLayoutEngine; /// A component that displays text as ASCII art using customizable fonts. ///