import { Directive, TemplateRef } from '@angular/core'; import { IgxPivotGridValueTemplateContext } from './pivot-grid.interface'; /** * @hidden */ @Directive({ selector: '[igxPivotValueChip]', standalone: true }) export class IgxPivotValueChipTemplateDirective { constructor(public template: TemplateRef) { } public static ngTemplateContextGuard(_directive: IgxPivotValueChipTemplateDirective, context: unknown): context is IgxPivotGridValueTemplateContext { return true; } }