larksr_websdk 3.3.113 → 3.3.114
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/en/config.md +228 -228
- package/dist/doc/en/dev.md +83 -83
- package/dist/doc/en/event_codes.md +286 -286
- package/dist/doc/en/events.md +229 -229
- package/dist/doc/en/functions.md +603 -603
- package/dist/doc/en/index.md +115 -115
- package/dist/doc/en/member_variables.md +403 -403
- package/dist/doc/en/multi_media_3_2_401.md +83 -83
- package/dist/doc/en/sdkid_encryption.md +40 -40
- package/dist/doc/en/update.md +462 -462
- package/dist/doc/zh_CN/update.md +579 -579
- package/dist/larksr-web-sdk.min.js +1 -1
- package/dist/types/api.d.ts +1 -1
- package/dist/types/event/event_base.d.ts +1 -1
- package/dist/types/larksr.d.ts +1 -1
- package/dist/types/operation/keymap.d.ts +1 -1
- package/dist/types/protobuf/cloudlark.d.ts +3 -10160
- package/dist/types/screen_state.d.ts +1 -1
- package/package.json +72 -72
- package/types/api.d.ts +1 -1
- package/types/event/event_base.d.ts +1 -1
- package/types/larksr.d.ts +1 -1
- package/types/operation/keymap.d.ts +1 -1
- package/types/protobuf/cloudlark.d.ts +3 -10160
- package/types/screen_state.d.ts +1 -1
- package/dist/types/lark/custom.d.ts +0 -7
- package/dist/types/lark/webcodecs.generated.d.ts +0 -417
- package/dist/types/utils/ios-inner-height.d.ts +0 -4
- package/types/lark/custom.d.ts +0 -7
- package/types/lark/webcodecs.generated.d.ts +0 -417
- package/types/utils/ios-inner-height.d.ts +0 -4
package/dist/types/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export interface LocalEvent<E> {
|
|
|
2
2
|
type: E;
|
|
3
3
|
target?: any;
|
|
4
4
|
}
|
|
5
|
-
export
|
|
5
|
+
export type Callback<E> = (e: E, ...params: any[]) => void;
|
|
6
6
|
export declare abstract class EventBase<T, E extends LocalEvent<T>> {
|
|
7
7
|
private listeners;
|
|
8
8
|
on(type: T, callback: Callback<E>, self?: any): void;
|
package/dist/types/larksr.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare class VirtualKey implements IVirtualKey {
|
|
|
18
18
|
vkey: number;
|
|
19
19
|
unicode: number;
|
|
20
20
|
}
|
|
21
|
-
export
|
|
21
|
+
export type VritualKeyMapOptions = {
|
|
22
22
|
[key: string]: VirtualKey;
|
|
23
23
|
};
|
|
24
24
|
export declare const KEYMAP: VritualKeyMapOptions;
|