UNPKG

@carlosv2/glue

Version:

Dependency injection library that stays out of the way

17 lines (16 loc) 319 B
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; } }