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