mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
Merge pull request #3688 from NativeScript/expose-by-css-name
Expose the _getByCssName for the angular animations
This commit is contained in:
@ -657,6 +657,10 @@ export class CssAnimationProperty<T extends Style, U> {
|
||||
Object.defineProperty(cls.prototype, keyframeName, keyframePropertyDescriptor);
|
||||
}
|
||||
}
|
||||
|
||||
public static _getByCssName(name: string): CssAnimationProperty<any, any> {
|
||||
return this.properties[name];
|
||||
}
|
||||
}
|
||||
|
||||
export class InheritedCssProperty<T extends Style, U> extends CssProperty<T, U> implements definitions.InheritedCssProperty<T, U> {
|
||||
|
Reference in New Issue
Block a user