(this: Lifetime<any>, atom: Atom.Atom<A>)
| 965 | }, |
| 966 | |
| 967 | mount<A>(this: Lifetime<any>, atom: Atom.Atom<A>): void { |
| 968 | if (this.disposed) return |
| 969 | this.addFinalizer(this.node.registry.mount(atom)) |
| 970 | }, |
| 971 | |
| 972 | subscribe<A>(this: Lifetime<any>, atom: Atom.Atom<A>, f: (_: A) => void, options?: { |
| 973 | readonly immediate?: boolean |
nothing calls this directly
no test coverage detected