@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
30 lines (29 loc) • 749 B
TypeScript
import { Package } from "../../PackageSystem/Package.js";
import { WoltLabXMLCompiler } from "../WoltLabXMLCompiler.js";
/**
* Provides the functionality to compile package-files.
*/
export declare class PackageFileCompiler extends WoltLabXMLCompiler<Package> {
/**
* Initializes a new instance of the {@link PackageFileCompiler `PackageFileCompiler`} class.
*
* @param item
* The item to compile.
*/
constructor(item: Package);
/**
* @inheritdoc
*/
protected get TagName(): string;
/**
* @inheritdoc
*/
protected get SchemaLocation(): string;
/**
* @inheritdoc
*
* @returns
* The serialized document.
*/
protected CreateDocument(): Document;
}