Appearance
vue-mvvm / core / ActionResult
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.
T