mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
15 lines
381 B
TypeScript
15 lines
381 B
TypeScript
import { buildProps } from '@element-plus/utils'
|
|
import { datePickerSharedProps } from './shared'
|
|
|
|
import type { ExtractPropTypes } from 'vue'
|
|
|
|
const { date, disabledDate, parsedValue } = datePickerSharedProps
|
|
|
|
export const basicYearTableProps = buildProps({
|
|
date,
|
|
disabledDate,
|
|
parsedValue,
|
|
})
|
|
|
|
export type BasicYearTableProps = ExtractPropTypes<typeof basicYearTableProps>
|