(expected?: Partial<TI18n>)
| 109 | * @param expected optional properties which the `TI18n` must contain. |
| 110 | */ |
| 111 | export function matchTI18n(expected?: Partial<TI18n>): jasmine.AsymmetricMatcher<TI18n> { |
| 112 | return matchObjectShape('TI18n', isTI18n, expected); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Asymmetric matcher which matches a `T1cu` of a given shape. |
no test coverage detected
searching dependent graphs…