@lark-project/js-sdk 2.0.2-dev.6 → 2.0.3-dev.1
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 +15 -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,21 @@ 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
|
+
* token 会通过 request header 的 x-plugin-custom-token 提供
|
|
1180
|
+
*/
|
|
1181
|
+
token?: string;
|
|
1182
|
+
};
|
|
1168
1183
|
}
|
|
1169
1184
|
/**
|
|
1170
1185
|
* 富文本完整内容
|