(cell: ICell)
| 31 | static instance = new Cell('', ''); |
| 32 | |
| 33 | static bindModel(cell: ICell) { |
| 34 | this.instance.recordId = cell.recordId; |
| 35 | this.instance.fieldId = cell.fieldId; |
| 36 | return this.instance; |
| 37 | } |
| 38 | |
| 39 | constructor(public recordId: string, public fieldId: string) { |
| 40 |
no outgoing calls
no test coverage detected