(this: Host, key: string | Dictionary<any>, value?: any)
| 570 | }, |
| 571 | // TODO: TYPE stricter type. |
| 572 | setVisual(this: Host, key: string | Dictionary<any>, value?: any) { |
| 573 | this.dataIndex >= 0 |
| 574 | && this[hostName][dataName].setItemVisual(this.dataIndex, key as any, value); |
| 575 | }, |
| 576 | |
| 577 | getVisual(this: Host, key: string) { |
| 578 | return this[hostName][dataName].getItemVisual(this.dataIndex, key as any); |
nothing calls this directly
no test coverage detected
searching dependent graphs…