Interface WebviewRequestMessage

interface WebviewRequestMessage {
    body: {
        command: WepinCommand;
        parameter: any;
    };
    header: {
        id: number;
        request_from: "wepin_widget";
        request_to: "web";
    };
}

Properties

Properties

body: {
    command: WepinCommand;
    parameter: any;
}
header: {
    id: number;
    request_from: "wepin_widget";
    request_to: "web";
}