Type Alias: AstroServiceResult<T>
AstroServiceResult<
T> = {data:T;error:null;ok:true; } | {data:null;error:AstroServiceError;ok:false; }
Defined in: src/types/index.ts:570
Safe Result (discriminated union without throwing).
Type Parameters
T
T