animatable.interface.d.ts 263 B

1234567891011
  1. import type { Nullable } from "../types";
  2. import type { Animation } from "./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. }