( name: string, expression: o.Expression | ir.Interpolation, sanitizer: o.Expression | null, sourceSpan: ParseSourceSpan, )
| 842 | } |
| 843 | |
| 844 | export function domProperty( |
| 845 | name: string, |
| 846 | expression: o.Expression | ir.Interpolation, |
| 847 | sanitizer: o.Expression | null, |
| 848 | sourceSpan: ParseSourceSpan, |
| 849 | ): ir.UpdateOp { |
| 850 | return propertyBase(Identifiers.domProperty, name, expression, sanitizer, sourceSpan); |
| 851 | } |
| 852 | |
| 853 | export function animation( |
| 854 | animationKind: ir.AnimationKind, |
nothing calls this directly
no test coverage detected
searching dependent graphs…