projects/rebirth-ng/src/lib/flow-step/flow-step.model.ts
Properties |
|
description |
description:
|
Type : string
|
Optional |
icon |
icon:
|
Type : string
|
Optional |
title |
title:
|
Type : string
|
export interface FlowStep {
title: string;
icon?: string;
description?: string;
}