1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 17:33:18 +00:00
Files
seahub/frontend/src/metadata/components/cell-editors/text-editor/constants.js
2024-09-14 16:31:32 +08:00

14 lines
191 B
JavaScript

import PropTypes from 'prop-types';
const CellValueType = [
PropTypes.string,
PropTypes.number,
PropTypes.bool,
PropTypes.object,
PropTypes.array,
];
export {
CellValueType,
};