dia_core 0.1.0

core elements of dia
Documentation
1
2
3
4
5
6
7
pub trait Codegen {
    fn generate(&self) -> String;
}

pub trait Compile<T> {
    fn to_ts_ast(&self) -> T;
}