mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
|
import type { ComputedRef, InjectionKey } from 'vue'
|
||
|
|
||
|
export interface UploadContext {
|
||
|
accept: ComputedRef<string>
|
||
|
}
|
||
|
|
||
|
export const uploadContextKey: InjectionKey<UploadContext> =
|
||
|
Symbol('uploadContextKey')
|