1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.uploadProps = void 0;
- var uploadProps = function uploadProps() {
- return {
- capture: [Boolean, String],
- multipart: {
- type: Boolean,
- default: undefined
- },
- name: String,
- disabled: {
- type: Boolean,
- default: undefined
- },
- componentTag: String,
- action: [String, Function],
- method: String,
- directory: {
- type: Boolean,
- default: undefined
- },
- data: [Object, Function],
- headers: Object,
- accept: String,
- multiple: {
- type: Boolean,
- default: undefined
- },
- onBatchStart: Function,
- onReject: Function,
- onStart: Function,
- onError: Function,
- onSuccess: Function,
- onProgress: Function,
- beforeUpload: Function,
- customRequest: Function,
- withCredentials: {
- type: Boolean,
- default: undefined
- },
- openFileDialogOnClick: {
- type: Boolean,
- default: undefined
- },
- prefixCls: String,
- id: String,
- onMouseenter: Function,
- onMouseleave: Function,
- onClick: Function
- };
- };
- exports.uploadProps = uploadProps;
|