Remove unused

This commit is contained in:
Manav Rathi 2024-05-16 09:22:55 +05:30
parent 0752800ecf
commit 0a9f7b8635
No known key found for this signature in database

View file

@ -18,11 +18,6 @@ const LOCAL_FILES_UPDATED_DEBOUNCE_SEC = 30;
export type JobState = "Scheduled" | "Running" | "NotScheduled";
export interface JobConfig {
intervalSec: number;
backoffMultiplier: number;
}
export interface MLSyncJobResult {
shouldBackoff: boolean;
mlSyncResult: MLSyncResult;