Add RelayCursor

This commit is contained in:
Jon Staab
2024-05-03 14:58:23 -07:00
parent 0dc2690e86
commit 4a1d61dd99
2 changed files with 71 additions and 14 deletions
+3 -2
View File
@@ -1,9 +1,10 @@
import {throttle} from "throttle-debounce"
import {ensurePlural, identity} from "./Tools"
type Invalidator<T> = (value?: T) => void
export type Invalidator<T> = (value?: T) => void
export type Subscriber<T> = (value: T) => void
type Derivable = Readable<any> | Readable<any>[]
type Subscriber<T> = (value: T) => void
type Unsubscriber = () => void
type R = Record<string, any>
type M<T> = Map<string, T>