UNPKG

@diffusionstudio/core-v4

Version:

2D motion graphics and video rendering engine

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