Skip to content

Type Alias: ExecutionResult\<T\>

ExecutionResult<T> = { data: T; ok: true; } | { message: string; ok: false; status: number; }

Success/failure shape returned by an interceptor-backed executor.

T