export declare const enum JobType { REFETCH = "REFETCH", REFRESH = "REFRESH" } export interface ResponseInvalidationJob { assetUrl: string; createdBy: string; deliveryService: string; readonly id: number; invalidationType: JobType; startTime: Date; ttlHours: number; } export interface RequestInvalidationJob { deliveryService: string; invalidationType: JobType; regex: string; startTime: Date | string; ttlHours: number; } export declare type InvalidationJob = RequestInvalidationJob | ResponseInvalidationJob;