igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
16 lines (15 loc) • 386 B
TypeScript
import { Base, Type } from "./type";
/**
* @hidden
*/
export declare class EasingFunctions extends Base {
static $t: Type;
private static c;
private static g;
private static a;
private static e;
private static f;
static cubicEase(a: number): number;
static exponentialEase(a: number): number;
static circleEase(a: number): number;
}