mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
18 lines
314 B
Rust
18 lines
314 B
Rust
pub mod color;
|
|
pub mod document;
|
|
pub mod layers;
|
|
pub mod operation;
|
|
pub mod response;
|
|
mod shape_points;
|
|
|
|
pub use operation::Operation;
|
|
pub use response::DocumentResponse;
|
|
|
|
pub type LayerId = u64;
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
pub enum DocumentError {
|
|
LayerNotFound,
|
|
InvalidPath,
|
|
IndexOutOfBounds,
|
|
}
|