woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
26 lines (25 loc) • 726 B
TypeScript
import { WoltLabXMLCompiler } from "./WoltLabXMLCompiler";
/**
* Provides the functionality to compile files with an import- and a delete-section.
*/
export declare abstract class ImportFileCompiler<T> extends WoltLabXMLCompiler<T> {
/**
* Initializes a new instance of the `ImportFileCompiler<T>` class.
*
* @param item
* The item to compile.
*/
constructor(item: T);
/**
* @inheritdoc
*/
protected CreateDocument(): Document;
/**
* Serializes the import-section of the document.
*/
protected CreateImport(): Element;
/**
* Serializes the delete-section of the document.
*/
protected CreateDelete(): Element;
}