@uozi-admin/curd
Version:
Easy to implement curd.
17 lines (16 loc) • 817 B
TypeScript
import { UploadFile } from 'antdv-next';
import { UploadConfig } from '../../types';
type __VLS_Props = {
props?: UploadConfig;
placeholder?: string | number;
disabled?: boolean;
};
type __VLS_PublicProps = {
'value'?: string | string[] | UploadFile[];
} & __VLS_Props;
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:value": (value: string | string[] | UploadFile<any>[]) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:value"?: ((value: string | string[] | UploadFile<any>[]) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
export default _default;