mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
6 lines
94 B
TypeScript
6 lines
94 B
TypeScript
export type ActionState<T> = {
|
|
success: boolean
|
|
error?: string | null
|
|
data?: T | null
|
|
}
|