/**
 * A hook is expected to expose a "hook" method
 *
 * <p>Note: a hook does not need to implement this interface.
 * Any object that exposes a "hook" method can be used.</p>
 */
export interface IHook {
    hook(): void;
}
