MCPcopy Create free account
hub / github.com/Fibi66/FeiControl / CronJobModalProps

Interface CronJobModalProps

src/components/CronJobModal.tsx:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import type { CronJob } from "./CronJobCard";
7
8interface CronJobModalProps {
9 isOpen: boolean;
10 onClose: () => void;
11 onSave: (job: Partial<CronJob>) => void;
12 editingJob?: CronJob | null;
13}
14
15const DEFAULT_TIMEZONE = Intl.DateTimeFormat().resolvedOptions().timeZone || "UTC";
16const TIMEZONES = Array.from(new Set([

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected