11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
|
|
import { buildProps, definePropType } from '../../../../utils/vue/props/runtime.mjs';
|
||
|
|
|
||
|
|
const basicCellProps = buildProps({
|
||
|
|
cell: {
|
||
|
|
type: definePropType(Object)
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
export { basicCellProps };
|
||
|
|
//# sourceMappingURL=basic-cell.mjs.map
|