We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fe8c40 commit e22620eCopy full SHA for e22620e
projects/igniteui-angular/src/lib/grids/toolbar/common.ts
@@ -66,4 +66,9 @@ export interface IgxGridToolbarTemplateContext {
66
@Directive({ selector: '[igxGridToolbar]'})
67
export class IgxGridToolbarDirective {
68
constructor(public template: TemplateRef<IgxGridToolbarTemplateContext>) {}
69
+
70
+ public static ngTemplateContextGuard(_dir: IgxGridToolbarDirective,
71
+ ctx: unknown): ctx is IgxGridToolbarTemplateContext {
72
+ return true
73
+ };
74
}
0 commit comments