alux-jsonrpc-typescript 0.2.1

TypeScript client interpretation of ALUX typed JSON-RPC programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

//! Interprets an [`alux_jsonrpc`] program as a TypeScript client module.
//!
//! The program states a name, an argument product and an answer; the shapes of that product and that
//! answer state their types. Folding the two together is the whole of a client, so nothing about the
//! surface is written a second time in another language.

mod client;
mod params;

pub use client::*;
pub use params::*;