Icard/angular-clarity-master(work.../node_modules/primeng/stepper/stepper.interface.d.ts

27 lines
540 B
TypeScript
Raw Normal View History

2024-07-16 15:23:22 +00:00
import { TemplateRef } from '@angular/core';
/**
* Defines valid templates in Stepper.
* @group Templates
*/
export interface StepperTemplates {
/**
* Custom start template.
*/
start(): TemplateRef<any>;
/**
* Custom end template.
*/
end(): TemplateRef<any>;
}
/**
* Custom active step change event.
* @see {@link Stepper.onActiveStepChange}
* @group Events
*/
export interface ActiveStepChangeEvent {
/**
* Emitted when the value changes.
*/
value: number | undefined | null;
}