@golemio/pid
Version:
Golemio PID Module
26 lines • 1.6 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GtfsStopTimeDropOffType = exports.GtfsStopTimePickupType = void 0;
var GtfsStopTimePickupType;
(function (GtfsStopTimePickupType) {
/** Regularly scheduled pickup */
GtfsStopTimePickupType[GtfsStopTimePickupType["RegularlyScheduled"] = 0] = "RegularlyScheduled";
/** No pickup available */
GtfsStopTimePickupType[GtfsStopTimePickupType["NoPickup"] = 1] = "NoPickup";
/** Must phone agency to arrange pickup */
GtfsStopTimePickupType[GtfsStopTimePickupType["MustPhone"] = 2] = "MustPhone";
/** Must coordinate with driver to arrange pickup */
GtfsStopTimePickupType[GtfsStopTimePickupType["MustCoordinate"] = 3] = "MustCoordinate";
})(GtfsStopTimePickupType || (exports.GtfsStopTimePickupType = GtfsStopTimePickupType = {}));
var GtfsStopTimeDropOffType;
(function (GtfsStopTimeDropOffType) {
/** Regularly scheduled drop off */
GtfsStopTimeDropOffType[GtfsStopTimeDropOffType["RegularlyScheduled"] = 0] = "RegularlyScheduled";
/** No drop off available */
GtfsStopTimeDropOffType[GtfsStopTimeDropOffType["NoDropOff"] = 1] = "NoDropOff";
/** Must phone agency to arrange drop off */
GtfsStopTimeDropOffType[GtfsStopTimeDropOffType["MustPhone"] = 2] = "MustPhone";
/** Must coordinate with driver to arrange drop off */
GtfsStopTimeDropOffType[GtfsStopTimeDropOffType["MustCoordinate"] = 3] = "MustCoordinate";
})(GtfsStopTimeDropOffType || (exports.GtfsStopTimeDropOffType = GtfsStopTimeDropOffType = {}));
//# sourceMappingURL=PassengerTransferEnums.js.map