InsuranceTweaks/types/di/OnUpdate.d.ts

5 lines
112 B
TypeScript
Raw Normal View History

2024-07-15 09:59:30 +02:00
export interface OnUpdate {
onUpdate(timeSinceLastRun: number): Promise<boolean>;
getRoute(): string;
}