import type { Optional } from '@ephox/katamari'; import * as ComponentSchema from '../../core/ComponentSchema'; export interface FormComponentSpec { type: string; name: string; } export interface FormComponent { type: string; name: string; } export interface FormComponentWithLabelSpec extends FormComponentSpec { label?: string; } export interface FormComponentWithLabel extends FormComponent { label: Optional; } export const formComponentFields = [ ComponentSchema.type, ComponentSchema.name ]; export const formComponentWithLabelFields = formComponentFields.concat([ ComponentSchema.optionalLabel ]);