6 lines
101 B
TypeScript
6 lines
101 B
TypeScript
interface ILoadingState {
|
|
status: boolean;
|
|
error?: string;
|
|
}
|
|
|
|
export { type ILoadingState };
|