We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ea965 commit e95b313Copy full SHA for e95b313
chartlets.js/packages/lib/src/types/state/store.ts
@@ -30,5 +30,9 @@ export interface StoreState {
30
* there are no state changes
31
*/
32
lastCallbackInputValues: Record<string, unknown[]>;
33
+ /**
34
+ * Store the loading state of each output ID of the callback that is invoked.
35
+ * If the request fails, the state is set to `failed`
36
+ */
37
loadingState: Record<string, boolean | "failed">;
38
}
0 commit comments