6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
import type { Disposer } from '../types';
|
|
declare const Scheduler: {
|
|
next: (id: string) => void;
|
|
schedule: (id: string) => Promise<Disposer>;
|
|
};
|
|
export default Scheduler;
|