@grouparoo/core
Version:
The Grouparoo Core
11 lines (10 loc) • 388 B
TypeScript
import { ParamsFrom } from "actionhero";
import { Worker } from "node-resque";
import { CLSTask } from "../../classes/tasks/clsTask";
export declare class RecordPropertiesEnqueue extends CLSTask {
name: string;
description: string;
frequency: number;
queue: string;
runWithinTransaction(params: ParamsFrom<RecordPropertiesEnqueue>, worker: Worker): Promise<number>;
}