angular-archwizard
Version:
An Angular 9+ module containing a wizard component and its supporting components and directives
23 lines (22 loc) • 684 B
TypeScript
import { TemplateRef } from '@angular/core';
/**
* The `awWizardStepSymbol` directive can be used as an alternative to the `navigationSymbol` input of a [[WizardStep]]
* to define the step symbol inside the navigation bar. This way step symbol may contain arbitrary content.
*
* ### Syntax
*
* ```html
* <ng-template awWizardStepSymbol>
* ...
* </ng-template>
* ```
*/
export declare class WizardStepSymbolDirective {
templateRef: TemplateRef<any>;
/**
* Constructor
*
* @param templateRef A reference to the content of the `ng-template` that contains this [[WizardStepSymbolDirective]]
*/
constructor(templateRef: TemplateRef<any>);
}