Files
ACVE/types/index.ts
2026-02-17 00:07:00 +00:00

5 lines
98 B
TypeScript

export type ActionResponse<T = any> = {
success: boolean;
data?: T;
error?: string;
};