element-plus/typings/env.d.ts

29 lines
445 B
TypeScript
Raw Normal View History

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 {}