UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

19 lines (18 loc) 489 B
import { IPackageDescriptorOptions } from "./IPackageDescriptorOptions"; /** * Provides an abstraction of a package. */ export declare class PackageDescriptor { /** * The identifier of the package. */ private identifier; /** * Initializes a new instance of the `PackageDescriptor` class. */ constructor(options: IPackageDescriptorOptions); /** * Gets or sets the identifier of the package. */ Identifier: string; }