mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-06 17:33:18 +00:00
14 lines
191 B
JavaScript
14 lines
191 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
const CellValueType = [
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
PropTypes.bool,
|
|
PropTypes.object,
|
|
PropTypes.array,
|
|
];
|
|
|
|
export {
|
|
CellValueType,
|
|
};
|