ts_io/lib.rs
1//! # `ts-io`
2//!
3//! Helpers for input/output related work.
4
5extern crate alloc;
6
7mod base64;
8mod child_command;
9mod cursor;
10mod path;
11mod read_file;
12
13pub use base64::Base64Url;
14pub use child_command::{ChildCommandError, process_using_child};
15pub use cursor::{Cursor, OutOfBounds};
16pub use path::{DisplayPath, NormalizePath, RelativePath};
17pub use read_file::{ReadFileError, read_file, read_file_to_string};