import type { IFieldBase } from './field.types'; import { FieldBase } from './field.types'; export interface INest extends IFieldBase { } export class NestModel extends FieldBase implements INest { type = 'nest'; subType = "hierarchy"; constructor(input: Partial) { super(input); } }