Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/effector/packages/effector/index.d.ts>Domain#store

Business logic with ease ☄️
Go to Latest
method Domain.prototype.store
import { Domain } from "https://deno.land/x/effector@effector-react%4023.2.0/packages/effector/index.d.ts";

Type Parameters

State
optional
SerializedState extends Json = Json

Parameters

defaultState: State
optional
config: { name?: string; sid?: string; updateFilter?: (update: State, current: State) => boolean; serialize?: "ignore" | { write: (state: State) => SerializedState; read: (json: SerializedState) => State; }; }