/** * BeforeInit hook. */ export interface BeforeInit { /** * BeforeInit hook is launched before decorator metadata is injected into the view. * @returns {any | Promise} */ beforeInit(): any | Promise; }