UNPKG

woltlab-compiler

Version:

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

27 lines (26 loc) 692 B
import { Package } from "../../PackageSystem/Package"; import { WoltLabXMLCompiler } from "../WoltLabXMLCompiler"; /** * Provides the functionality to compile package-files. */ export declare class PackageFileCompiler extends WoltLabXMLCompiler<Package> { /** * Initializes a new instance of the `PackageFileCompiler` class. * * @param item * The item to compile. */ constructor(item: Package); /** * @inheritdoc */ protected readonly TagName: string; /** * @inheritdoc */ protected readonly SchemaLocation: string; /** * @inheritdoc */ protected CreateDocument(): Document; }