main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
407 bytes
|
Rev | Line | |
---|
[d565449] | 1 | "use strict";
|
---|
| 2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
| 3 | const sync_1 = require("../readers/sync");
|
---|
| 4 | class SyncProvider {
|
---|
| 5 | constructor(_root, _settings) {
|
---|
| 6 | this._root = _root;
|
---|
| 7 | this._settings = _settings;
|
---|
| 8 | this._reader = new sync_1.default(this._root, this._settings);
|
---|
| 9 | }
|
---|
| 10 | read() {
|
---|
| 11 | return this._reader.read();
|
---|
| 12 | }
|
---|
| 13 | }
|
---|
| 14 | exports.default = SyncProvider;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.