@agendize/design-system
Version:
Agendize web design system
27 lines • 795 B
TypeScript
export declare abstract class Step {
readonly id: string;
readonly componentDefinition: {
component: any;
props?: () => Array<any>;
on?: Array<any>;
};
readonly title: string;
readonly subtitle?: string;
readonly nextButton?: {
label?: string;
visible?: boolean;
classes: string;
};
readonly countable?: boolean;
readonly showHeader?: boolean;
constructor(id: string, componentDefinition: {
component: any;
props?: () => Array<any>;
on?: Array<any>;
}, title: string, subtitle: string | undefined, nextButton?: {
label?: string;
visible?: boolean;
classes: string;
}, countable?: boolean, showHeader?: boolean);
}
//# sourceMappingURL=Stepper.d.ts.map