mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
18 lines
367 B
TypeScript
18 lines
367 B
TypeScript
import type { ExtractPropTypes } from 'vue'
|
|
import type Empty from './empty.vue'
|
|
|
|
export const emptyProps = {
|
|
image: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
imageSize: Number,
|
|
description: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
} as const
|
|
export type EmptyProps = ExtractPropTypes<typeof emptyProps>
|
|
|
|
export type EmptyInstance = InstanceType<typeof Empty>
|