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