import { type Effect } from "https://deno.land/x/effector@effector-vue%4023.1.0/packages/effector/index.d.ts";
Container for (possibly async) side effects
Properties
Methods
watch(watcher: (payload: Params) => any): Subscription
filterMap<T>(fn: (payload: Params) => T | undefined): EventAsReturnType<T>
map<T>(fn: (params: Params) => T): EventAsReturnType<T>
prepend<Before>(fn: (_: Before) => Params): EventCallable<Before>
subscribe(observer: Observer<Params>): Subscription