woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
20 lines (19 loc) • 641 B
TypeScript
import { IConflictingPackageDescriptorOptions } from "./IConflictingPackageDescriptorOptions";
import { PackageDescriptor } from "./PackageDescriptor";
/**
* Provides the abstraction of a package which causes a conflict.
*/
export declare class ConflictingPackageDescriptor extends PackageDescriptor {
/**
* The version of the package.
*/
private version;
/**
* Initializes a new instance of the `ConflictingPackageDescriptor` class.
*/
constructor(options: IConflictingPackageDescriptorOptions);
/**
* Gets or sets the version of the package.
*/
Version: string;
}