Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/nocterm.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
3 changes: 2 additions & 1 deletion lib/src/components/ascii_text.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down
Loading