fixed all warnings :D

This commit is contained in:
Oliver Bryan
2025-12-31 18:08:47 +00:00
parent 70ef02f790
commit 8b6dad8a2a
23 changed files with 138 additions and 145 deletions

View File

@@ -3,6 +3,6 @@ export * as organisation from "./organisation";
export * as project from "./project";
export type ServerQueryInput = {
onSuccess?: (data: any, res: Response) => void;
onError?: (error: any) => void;
onSuccess?: (data: unknown, res: Response) => void;
onError?: (error: unknown) => void;
};