#![allow(dead_code)] use std::cell::RefCell; use ts_rs::TS; #[derive(TS)] #[ts(export, export_to = "simple/")] struct Simple { a: i32, b: String, c: (i32, String, RefCell), d: Vec, e: Option, f: char, g: Option, } #[test] fn test_def() { assert_eq!( Simple::inline(), "{ a: number, b: string, c: [number, string, number], d: Array, e: string | null, f: string, g: string | null, }" ) }