(atom: Atom.Atom<A>)
| 315 | |
| 316 | const SerializableTypeId: Atom.SerializableTypeId = "~effect-atom/atom/Atom/Serializable" |
| 317 | const atomKey = <A>(atom: Atom.Atom<A>): Atom.Atom<A> | string => |
| 318 | SerializableTypeId in atom ? (atom as Atom.Serializable<any>)[SerializableTypeId].key : atom |
| 319 | |
| 320 | class RegistryImpl implements AtomRegistry { |
| 321 | readonly [TypeId]: TypeId |
no outgoing calls
no test coverage detected