mirror of
https://github.com/morbalint/kemkas.git
synced 2026-07-18 11:23:47 +00:00
6 lines
136 B
TypeScript
6 lines
136 B
TypeScript
export type LoadingState = "not-started" | "loading" | "finished"
|
|
|
|
export interface Fetched<T> {
|
|
data: T;
|
|
state: LoadingState;
|
|
} |