import { UmbDeepState } from './deep-state.js'; /** * @class UmbObjectState * @augments {UmbDeepState} * @description - A RxJS BehaviorSubject which deepFreezes the object-data to ensure its not manipulated from any implementations. * Additionally the Subject ensures the data is unique, not updating any Observes unless there is an actual change of the content. * * The UmbObjectState provides methods to append data when the data is an Object. */ export declare class UmbObjectState extends UmbDeepState { /** * @function update * @param {Partial} partialData - A object containing some of the data to update in this Subject. * @description - Append some new data to this Object. * @returns {UmbObjectState} Reference to it self. * @example Example append some data. * const data = {key: 'myKey', value: 'myInitialValue'}; * const myState = new UmbObjectState(data); * myState.update({value: 'myNewValue'}); */ update(partialData: Partial): this; }