UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

16 lines 421 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TimeServiceFactory = exports.TimeService = void 0; class TimeService { get now() { return new Date(); } } exports.TimeService = TimeService; class TimeServiceFactory { static create() { return new TimeService(); } } exports.TimeServiceFactory = TimeServiceFactory; //# sourceMappingURL=TimeService.js.map