angular-archwizard
Version:
An Angular 9+ module containing a wizard component and its supporting components and directives
26 lines (25 loc) • 740 B
TypeScript
import { TemplateRef } from '@angular/core';
/**
* The `awWizardStepTitle` directive can be used as an alternative to the `stepTitle` input of a [[WizardStep]]
* to define the content of a step title inside the navigation bar.
* This step title can be freely created and can contain more than only plain text
*
* ### Syntax
*
* ```html
* <ng-template awWizardStepTitle>
* ...
* </ng-template>
* ```
*
* @author Marc Arndt
*/
export declare class WizardStepTitleDirective {
templateRef: TemplateRef<any>;
/**
* Constructor
*
* @param templateRef A reference to the content of the `ng-template` that contains this [[WizardStepTitleDirective]]
*/
constructor(templateRef: TemplateRef<any>);
}