mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-15 17:16:16 +08:00
18 lines
324 B
Rust
18 lines
324 B
Rust
use anyhow::Result;
|
|
use napi_derive::napi;
|
|
|
|
mod array;
|
|
mod doc;
|
|
mod map;
|
|
mod text;
|
|
mod utils;
|
|
|
|
pub use array::YArray;
|
|
pub use doc::Doc;
|
|
pub use map::YMap;
|
|
pub use text::YText;
|
|
use utils::{
|
|
get_any_from_js_object, get_any_from_js_unknown, get_js_unknown_from_any,
|
|
get_js_unknown_from_value, MixedRefYType, MixedYType,
|
|
};
|