/** * Created by Christophe on 01/02/2017. */ import { EventListener } from "../common/event-listener.class"; export interface IDisplayable { display(): any; hide(): any; listen(event: string, callback: Function): EventListener; getStatus(statusName: string): any; subscribe(statusName: string, callback: Function): any; }