/** * Animation timeline. * * @see https://drafts.csswg.org/web-animations-1/#the-animationtimeline-interface */ export default class AnimationTimeline { /** * Returns the current timeline time. * * @returns Current time in milliseconds. */ public get currentTime(): number | null { return null; } }