mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 01:42:47 +08:00

* fix(components): [tree-select] value label rendering error * Update packages/components/select/src/select.vue Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix: update * fix: update * fix: lint * test: case * fix: lint --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
35 lines
599 B
TypeScript
35 lines
599 B
TypeScript
import type { vShow } from 'vue'
|
|
import type { INSTALLED_KEY } from '@element-plus/constants'
|
|
|
|
declare global {
|
|
const process: {
|
|
env: {
|
|
NODE_ENV: string
|
|
RUN_TEST_WITH_PERSISTENT: string
|
|
}
|
|
}
|
|
|
|
namespace JSX {
|
|
interface IntrinsicAttributes {
|
|
class?: unknown
|
|
style?: unknown
|
|
}
|
|
}
|
|
}
|
|
|
|
declare module 'vue' {
|
|
export interface App {
|
|
[INSTALLED_KEY]?: boolean
|
|
}
|
|
|
|
export interface GlobalComponents {
|
|
Component: (props: { is: Component | string }) => void
|
|
}
|
|
|
|
export interface ComponentCustomProperties {
|
|
vShow: typeof vShow
|
|
}
|
|
}
|
|
|
|
export {}
|