2015-01-29 17:10:49 -08:00
|
|
|
/**
|
2015-03-23 15:07:33 -07:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-01-29 17:10:49 -08:00
|
|
|
*
|
2018-05-10 19:06:46 -07:00
|
|
|
* @format
|
2018-06-20 00:35:29 -07:00
|
|
|
* @flow strict
|
2015-01-29 17:10:49 -08:00
|
|
|
*/
|
2018-05-10 19:06:46 -07:00
|
|
|
|
2015-05-19 13:43:46 -07:00
|
|
|
'use strict';
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2018-05-10 15:44:52 -07:00
|
|
|
const PropTypes = require('prop-types');
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2018-05-12 10:25:05 -07:00
|
|
|
const PointPropType = PropTypes.shape({
|
2015-01-29 17:10:49 -08:00
|
|
|
x: PropTypes.number,
|
|
|
|
y: PropTypes.number,
|
|
|
|
});
|
|
|
|
|
2018-05-12 10:25:18 -07:00
|
|
|
export type PointProp = $ReadOnly<{
|
|
|
|
x: number,
|
|
|
|
y: number,
|
|
|
|
}>;
|
|
|
|
|
2015-01-29 17:10:49 -08:00
|
|
|
module.exports = PointPropType;
|