blob: b8484b2dd65d005a93eb4220c0671e1cebd24f81 [file] [log] [blame]
Tal Gitelman51d50f02017-12-10 18:55:03 +02001/**
2 * Created by rc2122 on 8/16/2017.
3 */
4
5import {Type} from "@angular/core";
6
7export interface IStepComponent {
8 preventNext():boolean;
9 preventBack():boolean;
10}
11
12export class StepModel{
13 title: string;
14 component: Type<IStepComponent>;
15 constructor(title: string, component: Type<IStepComponent>){
16 this.title = title;
17 this.component = component;
18 }
19}