UNPKG

@robotlegsjs/core

Version:

An architecture-based IoC framework for JavaScript/TypeScript

10 lines (9 loc) 226 B
/** * 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; }