import { scopeBind } from "https://deno.land/x/effector@effector-vue%4023.1.0/packages/effector/index.d.ts";
Bind event to a scope to be called later.
When scope
is not provided this method retrieve scope implicitly from scope of the handler (effect handler or watch function) inside which it's being called
Parameters
unit: EventCallable<T>
event to bind
optional
opts: { scope?: Scope; safe?: boolean; }Bind effect to a scope to be called later.
When scope
is not provided this method retrieve scope implicitly from scope of the handler (effect handler or watch function) inside which it's being called
Bind arbitary callback to a scope to be called later.
When scope
is not provided this method retrieve scope implicitly from scope of the handler (effect handler or watch function) inside which it's being called