2024.js/lib/source.ts
2024-01-23 23:29:03 -05:00

5 lines
113 B
TypeScript

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