cotracking
Version:
A JavaScript library with TypeScript support for tracking orders through Correios(BR)
15 lines • 483 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Track = /** @class */ (function () {
function Track(status, local, origin, destiny, date, hour) {
this.status = status;
this.local = local || null;
this.origin = origin || null;
this.destiny = destiny || null;
this.date = date || null;
this.hour = hour || null;
}
return Track;
}());
exports.default = Track;
//# sourceMappingURL=Track.js.map