mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
9 lines
391 B
TypeScript
9 lines
391 B
TypeScript
import { componentSizes, datePickTypes } from '@element-plus/constants'
|
|
import type { ComponentSize, DatePickType } from '@element-plus/constants'
|
|
|
|
export const isValidComponentSize = (val: string): val is ComponentSize | '' =>
|
|
['', ...componentSizes].includes(val)
|
|
|
|
export const isValidDatePickType = (val: string): val is DatePickType =>
|
|
([...datePickTypes] as string[]).includes(val)
|