Skip to content

Commit 6cec008

Browse files
authored
doc(tree-grid): type key inputs (#14487)
1 parent cb094af commit 6cec008

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
169169
* @memberof IgxTreeGridComponent
170170
*/
171171
@Input()
172-
public childDataKey;
172+
public childDataKey: string;
173173

174174
/**
175175
* Sets the foreign key of the `IgxTreeGridComponent`.
@@ -181,7 +181,7 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
181181
* @memberof IgxTreeGridComponent
182182
*/
183183
@Input()
184-
public foreignKey;
184+
public foreignKey: string;
185185

186186
/**
187187
* Sets the key indicating whether a row has children.
@@ -196,7 +196,7 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
196196
* @memberof IgxTreeGridComponent
197197
*/
198198
@Input()
199-
public hasChildrenKey;
199+
public hasChildrenKey: string;
200200

201201
/**
202202
* Sets whether child records should be deleted when their parent gets deleted.

0 commit comments

Comments
 (0)