chore: add store state to simplify manageing validationErros and isLoading

This commit is contained in:
kushal-saha 2026-05-06 06:22:27 +00:00
parent 05d9f5876d
commit fdc458e167

View File

@ -0,0 +1,4 @@
export interface HttpStoreState {
isLoading: boolean;
validationErrors: Record<string, string[]> | null;
}