API reference › @evolu/common › Type › UnknownResult
type UnknownResult =
| ({ readonly value: unknown; readonly ok: true } & {})
| ({ readonly error: unknown; readonly ok: false } & {});
Defined in: packages/common/src/Type.ts:11787
A result Type for Result<unknown, unknown>.
Use this when only the Result structure must be validated, while its value and error remain intentionally unknown.