( name: string, expression: o.Expression | ir.Interpolation, sanitizer: o.Expression | null, sourceSpan: ParseSourceSpan, )
| 865 | } |
| 866 | |
| 867 | export function domProperty( |
| 868 | name: string, |
| 869 | expression: o.Expression | ir.Interpolation, |
| 870 | sanitizer: o.Expression | null, |
| 871 | sourceSpan: ParseSourceSpan, |
| 872 | ): ir.UpdateOp { |
| 873 | return propertyBase(Identifiers.domProperty, name, expression, sanitizer, sourceSpan); |
| 874 | } |
| 875 | |
| 876 | export function animation( |
| 877 | animationKind: ir.AnimationKind, |
nothing calls this directly
no test coverage detected