Skip to main content

alux_jsonrpc_typescript/
lib.rs

1#![doc = include_str!("../README.md")]
2
3//! Interprets an [`alux_jsonrpc`] program as a TypeScript client module.
4//!
5//! The program states a name, an argument product and an answer; the shapes of that product and that
6//! answer state their types. Folding the two together is the whole of a client, so nothing about the
7//! surface is written a second time in another language.
8
9mod client;
10mod params;
11
12pub use client::*;
13pub use params::*;