blob: b8484b2dd65d005a93eb4220c0671e1cebd24f81 [file] [log] [blame]
/**
* 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<IStepComponent>;
constructor(title: string, component: Type<IStepComponent>){
this.title = title;
this.component = component;
}
}