import type { PostURLJobInput } from './postURLJobInput'; import type { PostURLJobTarget } from './postURLJobTarget'; import type { TaskType } from './taskType'; /** * Object containing a URL job. */ export declare type PostURLJob = { type: TaskType; /** * The name of the column that hold the unique identifier. */ uniqueIDColumn?: string; input: PostURLJobInput; target: PostURLJobTarget; }; //# sourceMappingURL=postURLJob.d.ts.map