nativescript-angular
Version:
An Angular renderer that lets you build mobile apps with NativeScript.
8 lines (7 loc) • 377 B
TypeScript
import { KeyframeAnimation } from "tns-core-modules/ui/animation/keyframe-animation";
export interface Keyframe {
[key: string]: string | number;
offset: number;
}
export declare function dashCaseToCamelCase(input: string): string;
export declare function createKeyframeAnimation(styles: Keyframe[], duration: number, delay: number, easing: string): KeyframeAnimation;