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.
@@ -94,7 +94,7 @@ export interface StartAppInfo {
94
94
  frameRate?: number;
95
95
  imeFirstNotice?: number;
96
96
  }
97
- declare type HostAppliGetUrlReturnParams = {
97
+ type HostAppliGetUrlReturnParams = {
98
98
  appliId: string;
99
99
  wsId: string;
100
100
  timestamp: string;
@@ -2,7 +2,7 @@ export interface LocalEvent<E> {
2
2
  type: E;
3
3
  target?: any;
4
4
  }
5
- export declare type Callback<E> = (e: E, ...params: any[]) => void;
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;
@@ -273,7 +273,7 @@ interface LarkSREvent extends LocalEvent<LarkSRClientEvent> {
273
273
  larkevent?: LarkEventType;
274
274
  rawData?: any;
275
275
  }
276
- declare type PublicPortMapping = {
276
+ type PublicPortMapping = {
277
277
  [key: string]: string;
278
278
  };
279
279
  /**
@@ -18,7 +18,7 @@ export declare class VirtualKey implements IVirtualKey {
18
18
  vkey: number;
19
19
  unicode: number;
20
20
  }
21
- export declare type VritualKeyMapOptions = {
21
+ export type VritualKeyMapOptions = {
22
22
  [key: string]: VirtualKey;
23
23
  };
24
24
  export declare const KEYMAP: VritualKeyMapOptions;