UNPKG

@chartshq/datamodel

Version:

An environment with `node`, `rustup` and `wasm-pack` set up.

9 lines (8 loc) 270 B
import { DataConverter, Schema, Data } from '../../contracts/data'; export default class JSONConverter implements DataConverter { _type: string; get type(): string; convert(data: { [type: string]: string | number; }[], schema: Schema[]): Data; }