UNPKG

@iiif/3d-manifesto-dev

Version:

IIIF Presentation API utility library for client and server with 3D extension

12 lines 316 B
var Duration = /** @class */ (function () { function Duration(start, end) { this.start = start; this.end = end; } Duration.prototype.getLength = function () { return this.end - this.start; }; return Duration; }()); export { Duration }; //# sourceMappingURL=Duration.js.map