export type Cancel = () => void; export type Source = { (): T; (callback: (value: T) => void): Cancel; };