Valens-AIO/types/di/OnUpdate.d.ts

5 lines
112 B
TypeScript
Raw Normal View History

2023-02-12 23:21:14 -05:00
export interface OnUpdate {
2022-12-25 18:45:37 -05:00
onUpdate(timeSinceLastRun: number): Promise<boolean>;
2022-07-30 00:35:54 -04:00
getRoute(): string;
}