UNPKG

party-js

Version:

A JavaScript library to brighten up your user's site experience with visual effects!

11 lines (10 loc) 313 B
import { Spline } from "./spline"; /** * Represents a spline that can take numeric values. */ export declare class NumericSpline extends Spline<number> { /** * Smoothly interpolates between two keys on the spline. */ protected interpolate(a: number, b: number, t: number): number; }