timelineViewModel.d.ts 497 B

123456789101112131415161718
  1. import { TimelineKeyframeViewModel } from './timelineKeyframeViewModel';
  2. import { TimelineRowViewModel } from './timelineRowViewModel';
  3. export interface TimelineViewModel {
  4. /**
  5. * Screen coordinates of the element.
  6. */
  7. size: DOMRect;
  8. /**
  9. * Keyframes view models.
  10. */
  11. keyframesViewModels: TimelineKeyframeViewModel[];
  12. /**
  13. * Collection of the rows sizes.
  14. */
  15. rowsViewModels: TimelineRowViewModel[];
  16. min: number | null;
  17. max: number | null;
  18. }