@dazhicheng/ui 1.5.81 → 1.5.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -75,12 +75,12 @@ export declare const ttUploadProps: {
75
75
  /** 获取 OSS 签名信息的接口 ,不传则使用全局 setup 的 uploadOssApi */
76
76
  readonly uploadOssApi: {
77
77
  readonly type: PropType<(file: File) => Promise<any>> | undefined | false;
78
- readonly default: () => ((file: File) => Promise<OssSignatureResult>) | undefined;
78
+ readonly default: undefined;
79
79
  };
80
80
  /** 根据 ossKey 获取文件预览/下载 URL 的接口,不传则使用全局 setup 的 uploadOssViewApi */
81
81
  readonly uploadOssViewApi: {
82
82
  readonly type: PropType<(key: string) => Promise<any>>;
83
- readonly default: () => ((key: string) => Promise<string>) | undefined;
83
+ readonly default: undefined;
84
84
  };
85
85
  /** 上传提示文字 */
86
86
  readonly uploadTip: {