woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
24 lines • 627 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Provides an abstraction of a package.
*/
class PackageDescriptor {
/**
* Initializes a new instance of the `PackageDescriptor` class.
*/
constructor(options) {
this.Identifier = options.Identifier;
}
/**
* Gets or sets the identifier of the package.
*/
get Identifier() {
return this.identifier;
}
set Identifier(value) {
this.identifier = value;
}
}
exports.PackageDescriptor = PackageDescriptor;
//# sourceMappingURL=PackageDescriptor.js.map