Dimension.d.ts 303 B

1234567891011121314
  1. /**
  2. * Simply encapsulates a width and height.
  3. */
  4. export default class Dimension {
  5. private width;
  6. private height;
  7. constructor(width: number, height: number);
  8. getWidth(): number;
  9. getHeight(): number;
  10. equals(other: any): boolean;
  11. hashCode(): number;
  12. toString(): string;
  13. }