UNPKG

@grouparoo/core

Version:
18 lines (17 loc) 568 B
import { ParamsFrom } from "actionhero"; import { RetryableTask } from "../../classes/tasks/retryableTask"; export declare class ImportRecordProperty extends RetryableTask { name: string; description: string; frequency: number; queue: string; inputs: { readonly recordId: { readonly required: true; }; readonly propertyId: { readonly required: true; }; }; runWithinTransaction({ recordId, propertyId, }: ParamsFrom<ImportRecordProperty>): Promise<number | [affectedCount: number]>; }