fix: 'boolean' instead of 'bool'

This commit is contained in:
2025-06-15 21:05:03 +02:00
parent d17e154e42
commit 1a71f50914

View File

@ -22,7 +22,7 @@ interface IApiServicesState {
fetch: () => Promise<void>;
fetchSingle: (id: string) => Promise<void>;
create: (req: CreateApiServiceRequest) => Promise<bool>;
create: (req: CreateApiServiceRequest) => Promise<boolean>;
resetCredentials: () => void;
toggling: boolean;