Represents an object that can be removed/unregistered. This interface is used for various registration mechanisms where an object can be added and later removed using the returned handle.
0.1.3
Removes/unregisters the associated object. After calling this method, the object will no longer be active or used.
const handle = addValueFormatter(myFormatter);// ... use the formatterhandle.rm(); // Remove the formatter Copy
const handle = addValueFormatter(myFormatter);// ... use the formatterhandle.rm(); // Remove the formatter
Represents an object that can be removed/unregistered. This interface is used for various registration mechanisms where an object can be added and later removed using the returned handle.
Since
0.1.3