import { TEasingFunction } from '../types'; export const EaseInCubic: TEasingFunction = (x) => x ** 3;