@lark-project/js-sdk 2.0.6-alpha.0 → 2.0.6
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.
- package/dist/es/index.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/types/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
package/dist/lib/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1172,8 +1172,17 @@ declare abstract class Modal extends BaseModel {
|
|
|
1172
1172
|
}
|
|
1173
1173
|
|
|
1174
1174
|
interface IRichTextEditorImageUploadComplete {
|
|
1175
|
+
/**
|
|
1176
|
+
* 错误码,非 0 表示异常
|
|
1177
|
+
*/
|
|
1175
1178
|
code: number;
|
|
1179
|
+
/**
|
|
1180
|
+
* 错误信息
|
|
1181
|
+
*/
|
|
1176
1182
|
errMsg: string;
|
|
1183
|
+
/**
|
|
1184
|
+
* 图片上传接口返回的 response 数据
|
|
1185
|
+
*/
|
|
1177
1186
|
responseData: any;
|
|
1178
1187
|
}
|
|
1179
1188
|
/**
|
|
@@ -1215,6 +1224,7 @@ interface RichTextEditorOptions {
|
|
|
1215
1224
|
token?: string;
|
|
1216
1225
|
/**
|
|
1217
1226
|
* 上传完成回调
|
|
1227
|
+
* @mobile_version >=7.37.0
|
|
1218
1228
|
* @param info
|
|
1219
1229
|
* @returns
|
|
1220
1230
|
*/
|