Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import PooledClass from './PooledClass';
|
|
|
|
const twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
|
|
/**
|
|
* PooledClass representing the bounding rectangle of a region.
|
|
*
|
|
* @param {number} width Width of bounding rectangle.
|
|
* @param {number} height Height of bounding rectangle.
|
|
* @constructor BoundingDimensions
|
|
*/
|
|
// $FlowFixMe[missing-this-annot]
|
|
function BoundingDimensions(width: number, height: number) {
|
|
this.width = width;
|
|
this.height = height;
|
|
}
|
|
|
|
// $FlowFixMe[prop-missing]
|
|
// $FlowFixMe[missing-this-annot]
|
|
BoundingDimensions.prototype.destructor = function () {
|
|
this.width = null;
|
|
this.height = null;
|
|
};
|
|
|
|
/**
|
|
* @param {HTMLElement} element Element to return `BoundingDimensions` for.
|
|
* @return {BoundingDimensions} Bounding dimensions of `element`.
|
|
*/
|
|
BoundingDimensions.getPooledFromElement = function (
|
|
element: HTMLElement,
|
|
): typeof BoundingDimensions {
|
|
// $FlowFixMe[prop-missing]
|
|
return BoundingDimensions.getPooled(
|
|
element.offsetWidth,
|
|
element.offsetHeight,
|
|
);
|
|
};
|
|
|
|
PooledClass.addPoolingTo(BoundingDimensions as $FlowFixMe, twoArgumentPooler);
|
|
|
|
export default BoundingDimensions;
|