Interface RequestReplayInfo


Generated

from protobuf message SC2APIProtocol.RequestReplayInfo

interface RequestReplayInfo {
    downloadData?: boolean;
    replay: {
        oneofKind: "replayPath";
        replayPath: string;
    } | {
        oneofKind: "replayData";
        replayData: Uint8Array;
    } | {
        oneofKind: undefined;
    };
}

Properties

downloadData?: boolean

Generated

from protobuf field: optional bool download_data = 3;

replay: {
    oneofKind: "replayPath";
    replayPath: string;
} | {
    oneofKind: "replayData";
    replayData: Uint8Array;
} | {
    oneofKind: undefined;
}

Type declaration

  • oneofKind: "replayPath"
  • replayPath: string

    Generated

    from protobuf field: string replay_path = 1;

Type declaration

  • oneofKind: "replayData"
  • replayData: Uint8Array

    Generated

    from protobuf field: bytes replay_data = 2;

Type declaration

  • oneofKind: undefined

Generated

from protobuf oneof: replay

Generated using TypeDoc