import { Type } from '@angular/core'; interface LivePaneInputContract{ name: string; data: any; } interface LivePaneOutputContract{ [name: string]: Function; } export interface LivePaneContract { component: Type, inputs?: LivePaneInputContract[], outputs?: LivePaneOutputContract }