Type alias PollResult

PollResult: {
    result: IVehicleLocationList;
    type: SUCCESS;
} | {
    error: any;
    type: ERROR;
}

Generated using TypeDoc