mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-04-19 05:23:50 +02:00
5 lines
92 B
TypeScript
5 lines
92 B
TypeScript
export interface CounterState {
|
|
value: number;
|
|
status: "idle" | "loading" | "failed";
|
|
}
|