@k8slens/extensions 5.3.1-git.4f33dfdfd5.0 → 5.3.1-git.e5c1eba9cb.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,10 +20,13 @@
20
20
  */
21
21
  import Config from "conf";
22
22
  import type { Options as ConfOptions } from "conf/dist/source/types";
23
- import { IReactionOptions } from "mobx";
23
+ import { IEqualsComparer } from "mobx";
24
24
  import { Singleton, Disposer } from "./utils";
25
25
  export interface BaseStoreParams<T> extends ConfOptions<T> {
26
- syncOptions?: IReactionOptions;
26
+ syncOptions?: {
27
+ fireImmediately?: boolean;
28
+ equals?: IEqualsComparer<T>;
29
+ };
27
30
  }
28
31
  /**
29
32
  * Note: T should only contain base JSON serializable types.