UNPKG

igniteui-angular-gauges

Version:

Ignite UI Angular gauge components.

17 lines (16 loc) 606 B
import { Base, Type } from "igniteui-angular-core"; import { LinearGraphScaleFrame } from "./LinearGraphScaleFrame"; import { LinearGraphBackingFrame } from "./LinearGraphBackingFrame"; import { LinearGraphRectFrame } from "./LinearGraphRectFrame"; /** * @hidden */ export declare abstract class LinearGraphFrame extends Base { static $t: Type; constructor(); abstract get c(): LinearGraphScaleFrame; abstract set c(a: LinearGraphScaleFrame); a: LinearGraphBackingFrame; b: LinearGraphRectFrame; d(a: number, b: LinearGraphFrame, c: LinearGraphFrame): void; }