Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
407 bytes
|
Line | |
---|
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.