import { FieldType } from "../enums/FieldType";
export interface ItemField {
    name: string;
    type: FieldType;
}
