igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
18 lines (17 loc) • 811 B
TypeScript
import { Base, Point, Type } from "./type";
import { Thickness } from "./Thickness";
import { CornerRadius } from "./CornerRadius";
import { Rect } from "./Rect";
import { List$1 } from "./List$1";
/**
* @hidden
*/
export declare class InterpolationUtil extends Base {
static $t: Type;
static f(a: number, b: Thickness, c: Thickness): Thickness;
static d(a: number, b: CornerRadius, c: CornerRadius): CornerRadius;
static e(a: number, b: Rect, c: Rect): Rect;
static b(a: List$1<Point>, b: number, c: List$1<Point>, d: List$1<Point>): List$1<Point>;
static c<T>($t: Type, a: List$1<T>, b: number, c: List$1<T>, d: List$1<T>, e: () => T, f: (arg1: number, arg2: number, arg3: T, arg4: T) => T): List$1<T>;
static a(a: number, b: number[], c: number[]): number[];
}