Skip to main content

Type Alias: Result<T, E>

Result<T, E> = { data: T; success: true; } | { error: E; success: false; }

Defined in: chat/src/chat-bot.ts:150

Modern Result type for error handling

Type Parameters

T

T

E

E = Error