@pilotlab/lux-types
Version:
A luxurious user experience framework, developed by your friends at Pilot.
15 lines (14 loc) • 486 B
TypeScript
import { Attribute, IAttribute } from '@pilotlab/lux-attributes';
import ISize from './interfaces/iSize';
export declare class Size extends Attribute<Size> implements ISize {
constructor(width?: number, height?: number, depth?: number);
readonly copy: Size;
width: number;
protected p_width: IAttribute;
height: number;
protected p_height: IAttribute;
depth: number;
protected p_depth: IAttribute;
static readonly empty: Size;
}
export default Size;