Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 16:07:01 +01:00
parent 39d45c80b9
commit 0103f73c39
3 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
export type ServiceResult = {
result: unknown;
export type ServiceResult<T = unknown> = {
result: T;
succesful: boolean;
};