UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

23 lines 761 B
import { ACPOptionFileCompiler } from "../../Options/ACPOptionFileCompiler.js"; import { OptionInstructionCompiler } from "./OptionInstructionCompiler.js"; /** * Provides the functionality to compile instructions which provide options for the control-panel. */ export class ACPOptionInstructionCompiler extends OptionInstructionCompiler { /** * Initializes a new instance of the {@link ACPOptionInstructionCompiler `ACPOptionInstructionCompiler`} class. * * @param item * The item to compile. */ constructor(item) { super(item); } /** * @inheritdoc */ get OptionFileCompiler() { return new ACPOptionFileCompiler(this.Item); } } //# sourceMappingURL=ACPOptionInstructionCompiler.js.map