WxWindow: {
    frame(
        iframe: IFrameLike,
        onRecv: WxEndRecvFn,
        options?: WxEndOptions,
    ): Promise<WxResult<WxEnd>>;
    owner(
        ownerOrigin: string,
        onRecv: WxEndRecvFn,
        options?: WxEndOptions,
    ): Promise<WxResult<WxEnd>>;
    popup(
        url: string,
        onRecv: WxEndRecvFn,
        options?: WxWindowOpenOptions,
    ): Promise<WxResult<WxEnd>>;
}

Controller for the global Window object for talking to other Windows

Type declaration