API ClientsTypeScript SDKAPI ReferenceCoreType AliasesResult<T, E>Version: 8.10 (unreleased)On this pageType Alias: Result<T, E> type Result<T, E> = | { ok: true; value: T; } | { error: E; ok: false; }; Type Parameters T T E E = unknownWas this helpful?