mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-09-21 13:31:42 +00:00
4 lines
147 B
TypeScript
4 lines
147 B
TypeScript
export type ActionResult<T = void> =
|
|
| { success: true; data: T }
|
|
| { success: false; error: string; fieldErrors?: Record<string, string[]> };
|