tech-tycoon-frontend-web/src/store/loading/state.ts
2025-11-22 12:07:34 -05:00

6 lines
101 B
TypeScript

interface ILoadingState {
status: boolean;
error?: string;
}
export { type ILoadingState };