/** * AfterInit hook. */ export interface AfterInit { /** * AfterInit function is triggered before view is rendered, after checking that no errors are thrown. * @returns {any | Promise} */ afterInit(): any | Promise; }