mirror of
https://github.com/status-im/react-native.git
synced 2025-01-11 10:06:31 +00:00
8f5ebe5952
Reviewed By: sahrens Differential Revision: D7956042 fbshipit-source-id: 221851aa311f3cdd6326497352b366048db0a1bb
21 lines
467 B
JavaScript
21 lines
467 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
const PropTypes = require('prop-types');
|
|
|
|
const createStrictShapeTypeChecker = require('createStrictShapeTypeChecker');
|
|
|
|
const PointPropType = createStrictShapeTypeChecker({
|
|
x: PropTypes.number,
|
|
y: PropTypes.number,
|
|
});
|
|
|
|
module.exports = PointPropType;
|