This commit is contained in:
2023-02-27 16:08:41 +10:00
parent c8e49ba49c
commit 1ee2a1189d
18 changed files with 78 additions and 226 deletions

View File

@@ -20,7 +20,7 @@ interface ApiOptions {
export interface ApiResponse {
status: number;
message: string;
data: unknown;
data: Record<string, unknown>;
json?: Record<string, unknown>;
}