@lark-project/js-sdk 2.0.2-dev.6 → 2.0.3-dev.0
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 +14 -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
|
@@ -1165,6 +1165,20 @@ interface RichTextEditorOptions {
|
|
|
1165
1165
|
*/
|
|
1166
1166
|
spaceId: string;
|
|
1167
1167
|
};
|
|
1168
|
+
/**
|
|
1169
|
+
* 你自定义图床的配置
|
|
1170
|
+
* @mobile_version >= 7.31
|
|
1171
|
+
*/
|
|
1172
|
+
imageUpload?: {
|
|
1173
|
+
/**
|
|
1174
|
+
* 你的图片上传服务地址
|
|
1175
|
+
*/
|
|
1176
|
+
url: string;
|
|
1177
|
+
/**
|
|
1178
|
+
* 你的图片上传服务的鉴权 token
|
|
1179
|
+
*/
|
|
1180
|
+
token?: string;
|
|
1181
|
+
};
|
|
1168
1182
|
}
|
|
1169
1183
|
/**
|
|
1170
1184
|
* 富文本完整内容
|