import { Entity } from '../core/entity/core.base.entity'; import { FlowEntity } from './flow.entity'; import { EnvironmentKind } from "../enum/environment.kind"; export declare class FlowScheduleEntity extends Entity { cron: string; flowId: string; systemId: string; queue: string; args: any; options: any; locked: boolean; lockedBy: string; lockedDelay: number; lockedAt: Date; lockedUntil: Date; cronFields: any; flow: FlowEntity; aliasId: string; environmentKind: EnvironmentKind; } //# sourceMappingURL=flow.schedule.entity.d.ts.map