upload.d.ts 190 B

12345
  1. import type { ComputedRef, InjectionKey } from 'vue';
  2. export interface UploadContext {
  3. accept: ComputedRef<string>;
  4. }
  5. export declare const uploadContextKey: InjectionKey<UploadContext>;