2020-10-22 14:35:07 +09:00
|
|
|
pub mod document;
|
2020-10-16 12:29:22 +09:00
|
|
|
pub mod editor;
|
2020-09-21 18:24:16 +09:00
|
|
|
pub mod theme;
|
2021-02-03 19:36:54 +09:00
|
|
|
pub mod tree;
|
2020-09-21 18:24:16 +09:00
|
|
|
pub mod view;
|
|
|
|
|
2021-03-16 18:27:57 +09:00
|
|
|
use slotmap::new_key_type;
|
|
|
|
new_key_type! { pub struct DocumentId; }
|
|
|
|
|
2020-10-22 14:35:07 +09:00
|
|
|
pub use document::Document;
|
2020-10-16 12:29:22 +09:00
|
|
|
pub use editor::Editor;
|
2020-10-19 17:18:03 +09:00
|
|
|
pub use theme::Theme;
|
2020-09-21 18:24:16 +09:00
|
|
|
pub use view::View;
|