Skip to content

vue-mvvm / core / ActionResult

ActionResult<T>

ts
type ActionResult<T> = 
  | {
  data: T;
  success: true;
}
  | {
  error: Error | any;
  success: false;
};

Represents the result of an action that can either succeed with data or fail with an error.

Type Parameters

T

T