terminal/lib.rs
1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5pub mod paths;
6pub mod renderer;
7pub use crate::renderer::{
8 cell_size_from_cell_height, get_scale_factor, renderable_layers, FontSet, LayerContent, Offset,
9 RenderableLayer, Renderer,
10};