@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
22 lines (21 loc) • 1 kB
TypeScript
import { GroupCategory } from "../../../Options/Groups/GroupCategory.js";
import { GroupOption } from "../../../Options/Groups/GroupOption.js";
import { GroupOptionInstruction } from "../../../PackageSystem/Instructions/Options/GroupOptionInstruction.js";
import { GroupOptionFileCompiler } from "../../Options/GroupOptionFileCompiler.js";
import { OptionInstructionCompiler } from "./OptionInstructionCompiler.js";
/**
* Provides the functionality to compile {@link GroupOptionInstruction `GroupOptionInstruction`}s.
*/
export declare class GroupOptionInstructionCompiler extends OptionInstructionCompiler<GroupOptionInstruction, GroupCategory, GroupOption> {
/**
* Initializes a new instance of the {@link GroupOptionInstructionCompiler `GroupOptionInstructionCompiler`} class.
*
* @param item
* The item to compile.
*/
constructor(item: GroupOptionInstruction);
/**
* @inheritdoc
*/
protected get OptionFileCompiler(): GroupOptionFileCompiler;
}