ClearVision/types/di/OnUpdate.d.ts

5 lines
112 B
TypeScript
Raw Normal View History

2023-05-18 15:57:25 -04:00
export interface OnUpdate {
onUpdate(timeSinceLastRun: number): Promise<boolean>;
2022-07-09 16:03:26 -04:00
getRoute(): string;
}