ag-grid-rs 0.1.0

Wasm bindings for AG Grid
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Wasm bindings for the AG Grid Javascript library.
//!
//! With this crate, one is able to use the AG Grid datatable library within a Wasm context in Rust.

mod column;
mod grid;
mod gridoptions;
mod row;
mod types;
pub(crate) mod utils;

pub use column::*;
pub use grid::*;
pub use gridoptions::*;
pub use row::*;
pub use types::*;