entropic-bond 1.22.5 → 1.22.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -27,7 +27,7 @@ export declare class EntropicComponent extends Persistent {
|
|
|
27
27
|
*/
|
|
28
28
|
removeOnChange(listenerCallback: PropChangeCallback<this>): void;
|
|
29
29
|
/**
|
|
30
|
-
* Changes the value of the property and notifies the
|
|
30
|
+
* Changes the value of the property and notifies the subscribers about the change.
|
|
31
31
|
* This is a helper method that can be used in the property setter.
|
|
32
32
|
*
|
|
33
33
|
* @param propName the name of the property to be changed
|
|
@@ -33,7 +33,7 @@ class EntropicComponent extends persistent_1.Persistent {
|
|
|
33
33
|
this._onChange.unsubscribe(listenerCallback);
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
|
-
* Changes the value of the property and notifies the
|
|
36
|
+
* Changes the value of the property and notifies the subscribers about the change.
|
|
37
37
|
* This is a helper method that can be used in the property setter.
|
|
38
38
|
*
|
|
39
39
|
* @param propName the name of the property to be changed
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SomeClassProps } from '../types/utility-types';
|
|
2
|
-
declare type PersistentConstructor = new () => Persistent;
|
|
2
|
+
export declare type PersistentConstructor = new () => Persistent;
|
|
3
3
|
export declare type PersistentObject<T extends Persistent> = Omit<SomeClassProps<T>, 'className'> & {
|
|
4
4
|
__className?: string;
|
|
5
5
|
__rootCollections?: Collections;
|