import type { IFieldBase } from './field.types'; import { FieldBase } from './field.types'; export interface IFork extends IFieldBase { } export class ForkModel extends FieldBase implements IFork { type = 'fork'; subType = "hierarchy"; constructor(input: Partial) { super(input); this.subType = input.subType || this.subType; this.placeholder = input.placeholder || this.placeholder; } }