UNPKG

@diffusionstudio/core-v4

Version:

2D motion graphics and video rendering engine

10 lines (9 loc) 365 B
import { KeyframeOptions } from '../types'; import { Timestamp } from '../models'; /** * Interpolates a text between two keyframes * @param options - The keyframe options * @param timestamp - The current timestamp * @returns The interpolated text */ export declare function interpolateText(options: KeyframeOptions<any, string>, timestamp: Timestamp): string;