summaryrefslogtreecommitdiff
path: root/src/components/forms/fields/field_properties.ts
blob: d4e80664bbac1b5324624b3606eb0a31da6173b4 (plain)
1
2
3
4
5
6
7
8
9
export default interface FieldProperties {
  type: string;
  id: string;
  name: string;
  label: string;
  placeholder?: string;
  error_message?: string;
}