diff --git a/src/types/AbstractType.js b/src/types/AbstractType.js index 2f01dc14..9e1a877c 100644 --- a/src/types/AbstractType.js +++ b/src/types/AbstractType.js @@ -197,6 +197,13 @@ export class AbstractType { * @type {null | Array} */ this._searchMarker = null + /** + * You can store custom stuff here. + * This might be useful to associate your application state to this shared type. + * + * @type {Map} + */ + this.meta = new Map() } /**