import { CronPattern } from "./parseCron"; import { RunnerOptions } from "./runner"; export interface Schedule { name: string; pattern: string | CronPattern; timeZone: string; taskIdentifier?: string; queueName?: string; maxAttempts?: number; } export interface Options { inlineValues?: boolean; } export default function upsertSchedule({ name, pattern, timeZone, taskIdentifier, queueName, maxAttempts }: Schedule, runnerOptions: RunnerOptions, { inlineValues }?: Options): [string, any[]];