(tIcu: TIcu)
| 68 | } |
| 69 | |
| 70 | export function assertTIcu(tIcu: TIcu) { |
| 71 | assertDefined(tIcu, 'Expected TIcu to be defined'); |
| 72 | if (!(typeof tIcu.currentCaseLViewIndex === 'number')) { |
| 73 | throwError('Object is not of TIcu type.'); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | export function assertComponentType( |
| 78 | actual: any, |
no test coverage detected
searching dependent graphs…