Skip to main content
type Result<T, E> = 
  | {
  ok: true;
  value: T;
}
  | {
  error: E;
  ok: false;
};
Defined in: client/utils.ts:1

Type Parameters

T

T

E

E = Error