mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
import { buildProps, definePropType } from '@element-plus/utils'
|
|
|
|
import type { ExtractPropTypes } from 'vue'
|
|
import type { DateCell } from '../date-picker.type'
|
|
|
|
export const basicCellProps = buildProps({
|
|
cell: {
|
|
type: definePropType<DateCell>(Object),
|
|
},
|
|
} as const)
|
|
|
|
export type BasicCellProps = ExtractPropTypes<typeof basicCellProps>
|