Files
klz-cables.com/.pnpm-store/v10/files/3c/7049256a67e80bd7c635eebec6eb9c27035e04553becbfe37d4777705ab71c85605eb274e288499f9c30f5d7736f7e88434207efa7e67006e1febb57466f4a
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

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