@carlosv2/glue
Version:
Dependency injection library that stays out of the way
21 lines (20 loc) • 472 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefinitionContext = void 0;
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;
}
}
exports.DefinitionContext = DefinitionContext;