Skip to content

Type Alias: FieldOption

Makaio Framework


Makaio Framework / contracts / FieldOption

FieldOption = z.infer<typeof FieldOptionSchema>

Defined in: ../../../packages/contracts/src/shared/ui-config.ts:59

Option for select-type fields.

Each option represents a selectable choice in dropdown/select fields.

  • FieldOption
    • z.infer<typeof FieldOptionSchema>
      • typeof FieldOptionSchema
type FieldOption = {
value: string;
label: string;
};