arrow-wasm
arrow-wasm copied to clipboard
Generate documentation
Probably could use https://typedoc.org/.
Just reading through your issues 😄... In my experience typedoc has worked really well! Write docstrings in Rust, they're transpiled into .d.ts files automatically by wasm-pack, and then work basically out of the box with typedoc. Example here: https://kylebarron.dev/parquet-wasm/
Just needed a custom tsconfig plus declaring .d.ts files in the typedoc's entryPoints config.
https://github.com/kylebarron/parquet-wasm/blob/8a5b5f0e01439c050a123597b2a26d01174703c8/typedoc.json
https://github.com/kylebarron/parquet-wasm/blob/8a5b5f0e01439c050a123597b2a26d01174703c8/tsconfig.docs.json
Sweet. I think someone needs to revive this project first and update it to the latest arrow package/do some perf improvements but then docs would be nice. Awesome to hear it should just work.