()
| 3056 | @Input() dataSource!: DataSource<T>; |
| 3057 | |
| 3058 | ngAfterContentInit() { |
| 3059 | // Register the content's column, row, and header row definitions. |
| 3060 | this.columnDefs.forEach(columnDef => this.table.addColumnDef(columnDef)); |
| 3061 | this.rowDefs.forEach(rowDef => this.table.addRowDef(rowDef)); |
| 3062 | this.table.addHeaderRowDef(this.headerRowDef); |
| 3063 | this.table.setNoDataRow(this.noDataRow); |
| 3064 | } |
| 3065 | } |
| 3066 | |
| 3067 | @Component({ |
nothing calls this directly
no test coverage detected