mirror of
https://github.com/vas3k/TaxHacker.git
synced 2026-01-06 05:30:08 -06:00
6 lines
94 B
TypeScript
6 lines
94 B
TypeScript
export type ActionState<T> = {
|
|
success: boolean
|
|
error?: string | null
|
|
data?: T | null
|
|
}
|