UNPKG

@diffusionstudio/core-v4

Version:

A fast, browser based video compositing engine powered by WebCodecs

7 lines (6 loc) 298 B
import { KeyframeOptions } from '../../types'; import { MaskProps } from '../mask/interfaces'; export type EllipseMaskAnimationOptions = KeyframeOptions<'x' | 'y' | 'width' | 'height', number>[]; export interface EllipseMaskProps extends MaskProps { animations?: EllipseMaskAnimationOptions; }