RevertibleFactory TypeAlias
Factory for creating a Revertible. Will error if invoked outside the scope of the changed
event that provides it, or if invoked multiple times.
Signature
/** @sealed */
export type RevertibleFactory = (onRevertibleDisposed?: (revertible: Revertible) => void) => Revertible;