/** * Created by rc2122 on 8/16/2017. */ import {Type} from "@angular/core"; export interface IStepComponent { preventNext():boolean; preventBack():boolean; } export class StepModel{ title: string; component: Type; constructor(title: string, component: Type){ this.title = title; this.component = component; } }