namespace formgen.helpers.json { /** * @todo handle errors */ export function decode( json : string ) : unknown { return JSON.parse(json); } }