Type alias LifecycleHandle

LifecycleHandle: {
    end: (() => void);
    reset: (() => void);
}

A LifecycleHandle can be used to control signals and signal-sources that are added to the Store by store.getLifecycleHandle

Type declaration

  • end: (() => void)
      • (): void
      • reset all behaviors corresponding to this lifecycle

        Returns void

  • reset: (() => void)
      • (): void
      • reset all behaviors corresponding to this lifecycle

        Returns void

Generated using TypeDoc