UNPKG
@carlosv2/glue
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Dependency injection library that stays out of the way
github.com/carlosV2/glue
carlosV2/glue
@carlosv2/glue
/
dist
/
esm
/
context
/
definition.js
17 lines
(16 loc)
•
319 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export
class
DefinitionContext
{
constructor
(path, id, definition) {
this
.path = path;
this
.id = id;
this
.definition = definition; } getPath() {
return
this
.path; } getId() {
return
this
.id; } getDefinition() {
return
this
.definition; } }