@nevware21/tripwire - v0.1.4
    Preparing search index...

    Interface IRemovable

    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

    interface IRemovable {
        rm(): void;
    }
    Index

    Methods

    Methods

    • Removes/unregisters the associated object. After calling this method, the object will no longer be active or used.

      Returns void

      const handle = addValueFormatter(myFormatter);
      // ... use the formatter
      handle.rm(); // Remove the formatter