animatable.interface.ts 283 B

12345678910111213
  1. import { Nullable } from '../types';
  2. declare type Animation = import("./animation").Animation;
  3. /**
  4. * Interface containing an array of animations
  5. */
  6. export interface IAnimatable {
  7. /**
  8. * Array of animations
  9. */
  10. animations: Nullable<Array<Animation>>;
  11. }