mirror of https://github.com/jkjoy/sunpeiwen.git
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
|
import { Disposer } from '../types';
|
||
|
declare const Scheduler: {
|
||
|
next: (id: string) => void;
|
||
|
schedule: (id: string) => Promise<Disposer>;
|
||
|
};
|
||
|
export default Scheduler;
|