export type LooseRecord = Record; export type JsonResult = { tag: "Ok"; value: A; } | { tag: "Error"; error: E; }; export type JsonAsyncData = { tag: "NotAsked"; } | { tag: "Loading"; } | { tag: "Done"; value: A; }; export type JsonOption = { tag: "None"; } | { tag: "Some"; value: A; };