tav-ui
Version:
35 lines (34 loc) • 1.1 kB
TypeScript
import { type PropType } from 'vue';
import type { BasicPropsType } from '../types';
export declare const UpdateFile: import("vue").DefineComponent<{
parentProps: {
type: PropType<BasicPropsType>;
default: () => {};
};
accept: {
type: PropType<string>;
default: string;
};
onUpdateFail: FunctionConstructor;
onUpdateSuccess: FunctionConstructor;
readonly: {
type: BooleanConstructor;
};
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
parentProps?: unknown;
accept?: unknown;
onUpdateFail?: unknown;
onUpdateSuccess?: unknown;
readonly?: unknown;
} & {
readonly: boolean;
accept: string;
parentProps: BasicPropsType;
} & {
onUpdateFail?: Function | undefined;
onUpdateSuccess?: Function | undefined;
}>, {
readonly: boolean;
accept: string;
parentProps: BasicPropsType;
}>;