config.ts
579 Bytes
import { cloneDeep } from 'lodash-es';
import { PublicNodeItemClass } from '../../../types/node';
import type {
  CategoryConfigType,
  CreateComponentType,
  NodeItemConfigType,
} from '../../../types/node';
import { EnrichmentCategoryConfig } from '..';
import { RelatedAttributesConfig } from '.';
export class Config extends PublicNodeItemClass implements CreateComponentType {
  public config: NodeItemConfigType = cloneDeep(RelatedAttributesConfig);
  public categoryConfig: CategoryConfigType = cloneDeep(EnrichmentCategoryConfig);
  constructor() {
    super();
  }
}