export interface JSONObject { [key: string]: JSONValue; } export type JSONArray = JSONValue[]; export type JSONValue = null | boolean | number | string | JSONArray | JSONObject; export type Encoded<_Data, Representation> = Representation; export type StringEncoded = Encoded; export type Result = { ok: true; value: T; } | { ok: false; error: X; }; export interface EncodedError { message: string; name: string; stack: string; } //# sourceMappingURL=data.d.ts.map