Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
644 B
Plaintext
17 lines
644 B
Plaintext
import type { SanitizedJobsConfig, ScheduleConfig } from '../../config/types/index.js';
|
|
import type { TaskConfig } from '../../config/types/taskTypes.js';
|
|
import type { WorkflowConfig } from '../../config/types/workflowTypes.js';
|
|
type QueuesWithSchedules = {
|
|
[queue: string]: {
|
|
schedules: {
|
|
scheduleConfig: ScheduleConfig;
|
|
taskConfig?: TaskConfig;
|
|
workflowConfig?: WorkflowConfig;
|
|
}[];
|
|
};
|
|
};
|
|
export declare const getQueuesWithSchedules: ({ jobsConfig, }: {
|
|
jobsConfig: SanitizedJobsConfig;
|
|
}) => QueuesWithSchedules;
|
|
export {};
|
|
//# sourceMappingURL=getQueuesWithSchedules.d.ts.map |