( stage: IntrospectStage, count: number, status: IntrospectStatus, )
| 477 | } |
| 478 | |
| 479 | public update( |
| 480 | stage: IntrospectStage, |
| 481 | count: number, |
| 482 | status: IntrospectStatus, |
| 483 | ) { |
| 484 | this.state[stage].count = count; |
| 485 | this.state[stage].status = status; |
| 486 | this.requestLayout(); |
| 487 | } |
| 488 | |
| 489 | private formatCount = (count: number) => { |
| 490 | const width: number = Math.max.apply( |
no outgoing calls
no test coverage detected