(nodeType: string)
| 48 | } |
| 49 | |
| 50 | export function invalidNodeType(nodeType: string): Error { |
| 51 | return new RuntimeError( |
| 52 | RuntimeErrorCode.INVALID_NODE_TYPE, |
| 53 | ngDevMode && `Unable to resolve animation metadata node #${nodeType}`, |
| 54 | ); |
| 55 | } |
| 56 | |
| 57 | export function invalidCssUnitValue(userProvidedProperty: string, value: string): Error { |
| 58 | return new RuntimeError( |