add meta property to AbstractType

This commit is contained in:
Kevin Jahns 2021-12-07 13:53:28 +01:00
parent 24bca2af43
commit 53e2c83f86

View File

@ -197,6 +197,13 @@ export class AbstractType {
* @type {null | Array<ListIterator>}
*/
this._searchMarker = null
/**
* You can store custom stuff here.
* This might be useful to associate your application state to this shared type.
*
* @type {Map<any, any>}
*/
this.meta = new Map()
}
/**