alux-jsonrpc-typescript 0.1.0

TypeScript client interpretation of ALUX typed JSON-RPC programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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;

/// The package that interprets a program: what turns one into a client, installed once.
///
pub use client::*;
pub use params::*;