ts_io/
lib.rs

1//! # `ts-io`
2
3extern crate alloc;
4
5mod base64;
6mod child_command;
7mod cursor;
8mod fs;
9mod path;
10
11pub use base64::Base64Url;
12pub use child_command::{ChildCommandError, process_using_child};
13pub use cursor::{Cursor, OutOfBounds};
14pub use fs::{FileError, ensure_is_file, read_file, read_file_to_string};
15pub use path::{DisplayPath, NormalizePath, RelativePath};