@phenixrts/sdk
Version:
JavaScript SDK
10 lines (9 loc) • 319 B
TypeScript
import IComparable from '../lang/IComparable';
export default class Dimension implements IComparable<Dimension> {
readonly width: number;
readonly height: number;
static get empty(): Dimension;
constructor(width: number, height: number);
equals(other: Dimension): boolean;
toString(): string;
}