mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
9 lines
291 B
TypeScript
9 lines
291 B
TypeScript
import type { ConfigProviderProps } from '@element-plus/components/config-provider'
|
|
import type { InjectionKey, Ref } from 'vue'
|
|
|
|
export type ConfigProviderContext = Partial<ConfigProviderProps>
|
|
|
|
export const configProviderContextKey: InjectionKey<
|
|
Ref<ConfigProviderContext>
|
|
> = Symbol()
|