mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-16 03:53:39 +08:00

* chore: remove ts-nocheck comments in select-v2 * take the review comments * improve emits type * the keys of emits use camelCase instead of kebab-case * apply suggestions from code review Co-authored-by: btea <2356281422@qq.com> * reduce duplicate ESLint comments * use more succinct syntax to define props * revert emits to kebab-case * fix: type checking failed * chore: illustrate why return early in validateIcon * fix: signature with duplicate parameter names Co-authored-by: qiang <qw13131wang@gmail.com> --------- Co-authored-by: btea <2356281422@qq.com> Co-authored-by: qiang <qw13131wang@gmail.com>
16 lines
716 B
TypeScript
16 lines
716 B
TypeScript
export { default as FixedSizeList } from './src/components/fixed-size-list'
|
|
export { default as DynamicSizeList } from './src/components/dynamic-size-list'
|
|
export { default as FixedSizeGrid } from './src/components/fixed-size-grid'
|
|
export { default as DynamicSizeGrid } from './src/components/dynamic-size-grid'
|
|
export * from './src/props'
|
|
|
|
export type { FixedSizeListInstance } from './src/components/fixed-size-list'
|
|
export type { DynamicSizeListInstance } from './src/components/dynamic-size-list'
|
|
export type { GridInstance } from './src/builders/build-grid'
|
|
export type {
|
|
DynamicSizeGridInstance,
|
|
ResetAfterIndex,
|
|
ResetAfterIndices,
|
|
} from './src/components/dynamic-size-grid'
|
|
export * from './src/types'
|