UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

7 lines (6 loc) 246 B
export declare const interpolate: unique symbol; export declare const isInterpolating: (x: any) => x is Interpolating<any>; export interface Interpolating<T = any> { equals(other: T): boolean; [interpolate]: (other: T, d: number) => T; }