diff --git a/tns-core-modules/ui/core/properties.ts b/tns-core-modules/ui/core/properties.ts index 480dcff44..1ae0bcaaa 100644 --- a/tns-core-modules/ui/core/properties.ts +++ b/tns-core-modules/ui/core/properties.ts @@ -657,6 +657,10 @@ export class CssAnimationProperty { Object.defineProperty(cls.prototype, keyframeName, keyframePropertyDescriptor); } } + + public static _getByCssName(name: string): CssAnimationProperty { + return this.properties[name]; + } } export class InheritedCssProperty extends CssProperty implements definitions.InheritedCssProperty {