mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 03:08:21 +08:00
cd0f5ace61
Co-authored-by: 三咲智子 <sxzz@sxzz.moe>
27 lines
435 B
TypeScript
27 lines
435 B
TypeScript
import type { vShow } from 'vue'
|
|
|
|
declare global {
|
|
const process: {
|
|
env: { NODE_ENV: string }
|
|
}
|
|
|
|
namespace JSX {
|
|
interface IntrinsicAttributes {
|
|
class?: any
|
|
style?: any
|
|
}
|
|
}
|
|
}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
export interface GlobalComponents {
|
|
Component: (props: { is: Component | string }) => void
|
|
}
|
|
|
|
export interface ComponentCustomProperties {
|
|
vShow: typeof vShow
|
|
}
|
|
}
|
|
|
|
export {}
|