UNPKG
vtseditor
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
VTS Editor
github.com/stefanwerfling/vtseditor
stefanwerfling/vtseditor
vtseditor
/
SchemaProvider
/
ASchemaProvider.ts
11 lines
(7 loc)
•
225 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
ConfigProvider
}
from
'../Config/Config.js'
;
export
abstract
class
ASchemaProvider
{
protected
_config
:
ConfigProvider
;
protected
constructor
(
config
:
ConfigProvider
) {
this
.
_config
= config; } }