import { LimeObject as Base } from '../../lime-web-components/src'; import { Property } from './limetype.interface'; /** * @deprecated has been renamed to better align with the Python class from * `lime-core`. Use {@link Base LimeObject} from `@limetech/lime-web-components` instead */ export interface LimeObject extends Base { /** * Get related data of the object * * @param {Property} property the property of the related object * @deprecated use `getValue` instead */ getRelation(property: Property): LimeObject; }