6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
|
|
import type { ComputedRef, InjectionKey } from 'vue';
|
||
|
|
export interface UploadContext {
|
||
|
|
accept: ComputedRef<string>;
|
||
|
|
}
|
||
|
|
export declare const uploadContextKey: InjectionKey<UploadContext>;
|