larksr_websdk 3.2.334 → 3.2.336
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/doc/functions.md +34 -0
- package/dist/larksr-web-sdk.min.js +1 -1
- package/dist/types/lark/application.d.ts +2 -0
- package/dist/types/lark/media_share_interface.d.ts +2 -0
- package/dist/types/lark/peer_connection.d.ts +2 -0
- package/dist/types/lark/peer_connection_media_share.d.ts +2 -0
- package/dist/types/larksr.d.ts +18 -0
- package/dist/types/protobuf/cloudlark.d.ts +7885 -7885
- package/dist/types/utils/unit.d.ts +6 -0
- package/package.json +1 -1
- package/types/lark/application.d.ts +2 -0
- package/types/lark/media_share_interface.d.ts +2 -0
- package/types/lark/peer_connection.d.ts +2 -0
- package/types/lark/peer_connection_media_share.d.ts +2 -0
- package/types/larksr.d.ts +18 -0
- package/types/protobuf/cloudlark.d.ts +7885 -7885
- package/types/utils/unit.d.ts +6 -0
package/types/utils/unit.d.ts
CHANGED
|
@@ -139,4 +139,10 @@ export default class Unit {
|
|
|
139
139
|
*/
|
|
140
140
|
static getMobliePixelWidth(px: number, mobilePixelUnit: number): number;
|
|
141
141
|
static IsIframe(): boolean;
|
|
142
|
+
/**
|
|
143
|
+
* 向上为整数并且 向上计算为偶数
|
|
144
|
+
* @param n
|
|
145
|
+
* @returns
|
|
146
|
+
*/
|
|
147
|
+
static evenNumber(n: number): number;
|
|
142
148
|
}
|