UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

20 lines (19 loc) 510 B
import { PhloxApp } from './PhloxApp.component'; /** * <p style="text-indent: 2em;"> * A super interface of any classes having a reference to an <code>application</code> ([[PhloxApp]]) instance. * </p> * * @author shiorin, tee4cute * @see [[PhloxApp]] */ export interface IApplicationAware { /** * <p style="text-indent: 1em;"> * Get a reference to the <code>application</code> ([[PhloxApp]]) instance. * </p> * * @see [[PhloxApp]] */ getApplication(): PhloxApp; }