UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

26 lines (25 loc) 643 B
import { IPackageDescriptorOptions } from "./IPackageDescriptorOptions.js"; /** * Provides an abstraction of a package. */ export declare class PackageDescriptor { /** * The identifier of the package. */ private identifier; /** * Initializes a new instance of the {@link PackageDescriptor `PackageDescriptor`} class. * * @param options * The options of the descriptor. */ constructor(options: IPackageDescriptorOptions); /** * Gets or sets the identifier of the package. */ get Identifier(): string; /** * @inheritdoc */ set Identifier(value: string); }