Files
TaxHacker/lib/actions.ts
2025-04-09 12:45:56 +02:00

6 lines
94 B
TypeScript

export type ActionState<T> = {
success: boolean
error?: string | null
data?: T | null
}