VL53L0X Different Library being used on DFRobot website

On the website wiki for the VL530L0X distance sensor ( https://wiki.dfrobot.com/Gravity__VL53L0X_ToF_Laser_Range_Finder_SKU_SEN0245 ), the Arduino example shows Sample Code with the following 2 snippets of code inside:
#include "Arduino.h"
#include "Wire.h"
#include "DFRobot_VL53L0X.h"
/*****************Keywords instruction*****************/
//Continuous--->Continuous measurement model
//Single------->Single measurement mode
//High--------->Accuracy of 0.25 mm
//Low---------->Accuracy of 1 mm
/*****************Function instruction*****************/
//setMode(ModeState mode, PrecisionState precision)
//*This function is used to set the VL53L0X mode
//*mode: Set measurement mode Continuous or Single
//*precision: Set the precision High or Low
//Set to Back-to-back mode and high precision mode
sensor.setMode(Continuous,High);
The default include file DFRobot_VL53L0X.h I could find, has no function setMode to accept Continuous (or Single) and High (or Low) ????
Is there a different DFRobot_VL53L0X library somewhere ??
Thanks,
Gerry
You're correct in observing that the DFRobot_VL53L0X.h header file you have might not include the setMode() function accepting Continuous (or Single) and High (or Low) as parameters. This discrepancy likely arises from differences between library versions or naming conventions.
The official DFRobot library for the VL53L0X sensor defines the setMode() function as follows:
void setMode(eModeState mode, ePrecisionState precision);
