MCPcopy
hub / github.com/calcom/cal.diy / FieldConfig

Interface FieldConfig

apps/web/playwright/lib/test-helpers/routingFormHelpers.ts:12–20  ·  view source on GitHub ↗

* Configuration for form fields

Source from the content-addressed store, hash-verified

10 * Configuration for form fields
11 */
12interface FieldConfig {
13 id?: string;
14 type: "text" | "email" | "select" | "multiselect" | "number";
15 label: string;
16 identifier?: string;
17 required?: boolean;
18 options?: { id: string; label: string }[];
19 selectText?: string;
20}
21
22/**
23 * Configuration for form routes

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected