UNPKG

199 BTypeScriptView Raw
1import type { RangeValue } from "../../Types/RangeValue";
2export interface IAnimation {
3 count: RangeValue;
4 decay: RangeValue;
5 enable: boolean;
6 speed: RangeValue;
7 sync: boolean;
8}