dsql-admin/dsql-app/types/index.ts
Benjamin Toby 1b48c07ee8 Updates
2025-02-12 17:56:44 +01:00

9 lines
173 B
TypeScript

export type APIResponseObject<
T extends { [k: string]: any } = { [k: string]: any }
> = {
success: boolean;
payload?: T;
msg?: string;
err?: string;
};