UNPKG

mealcomes

Version:

MealComes 用于学习前端的组件库

23 lines (22 loc) 700 B
import { ExtractPropTypes } from 'vue'; import { default as UploadDragger } from './upload-dragger.vue'; export declare const uploadDraggerProps: { directory: { type: BooleanConstructor; default: boolean; }; accept: { type: StringConstructor; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; }; export type UploadDraggerProps = ExtractPropTypes<typeof uploadDraggerProps>; export declare const uploadDraggerEmits: { file: (file: File[]) => boolean; }; export type UploadDraggerEmits = typeof uploadDraggerEmits; export type UploadDraggerInstance = InstanceType<typeof UploadDragger> & unknown;