import { Result } from '@ephox/katamari'; export const create = (text: string): Result => { try { const parsed = JSON.parse(text); return Result.value(parsed); } catch { return Result.error('Response was not JSON.'); } };