import { AdaptableObject } from './AdaptableObject'; /** * Interface that extends Adaptable Object for those config items that have a Name */ export interface NamedObject extends AdaptableObject { /** * Name of the Adaptable Object */ Name: string; }