idlize
1declare interface NativeEmbedInfo {
2params?: Map<string, string>;
3}
4
5declare interface NativeEmbedDataInfo {
6info?: NativeEmbedInfo;
7}
8
9interface WebInterface {
10(): WebAttribute;
11}
12
13declare class WebAttribute extends CommonMethod<WebAttribute> {
14onNativeEmbedLifecycleChange(callback: (event: NativeEmbedDataInfo) => void): WebAttribute;
15}
16
17declare const Web: WebInterface;
18declare const WebInstance: WebAttribute;