UNPKG

igniteui-angular-sovn

Version:

Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps

17 lines (16 loc) 550 B
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<IgxPivotGridValueTemplateContext>) { } public static ngTemplateContextGuard(_directive: IgxPivotValueChipTemplateDirective, context: unknown): context is IgxPivotGridValueTemplateContext { return true; } }