igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
16 lines (15 loc) • 366 B
TypeScript
import { Description } from "./Description";
import { Type } from "./type";
/**
* @hidden
*/
export declare class SizeDescription extends Description {
static $t: Type;
private _width;
get width(): number;
set width(a: number);
private _height;
get height(): number;
set height(a: number);
equals(a: any): boolean;
}