You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
637 B
18 lines
637 B
export declare function configure(options: {
|
|
enforceActions?: "never" | "always" | "observed";
|
|
computedRequiresReaction?: boolean;
|
|
/**
|
|
* Warn if you try to create to derivation / reactive context without accessing any observable.
|
|
*/
|
|
reactionRequiresObservable?: boolean;
|
|
/**
|
|
* Warn if observables are accessed outside a reactive context
|
|
*/
|
|
observableRequiresReaction?: boolean;
|
|
isolateGlobalState?: boolean;
|
|
disableErrorBoundaries?: boolean;
|
|
safeDescriptors?: boolean;
|
|
reactionScheduler?: (f: () => void) => void;
|
|
useProxies?: "always" | "never" | "ifavailable";
|
|
}): void;
|