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