UNPKG

@manuth/woltlab-compiler

Version:

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

23 lines 766 B
import { UserOptionFileCompiler } from "../../Options/UserOptionFileCompiler.js"; import { OptionInstructionCompiler } from "./OptionInstructionCompiler.js"; /** * Provides the functionality to compile {@link UserOptionInstruction `UserOptionInstruction`}s. */ export class UserOptionInstructionCompiler extends OptionInstructionCompiler { /** * Initializes a new instance of the {@link UserOptionInstructionCompiler `UserOptionInstructionCompiler`} class. * * @param item * The item to compile. */ constructor(item) { super(item); } /** * @inheritdoc */ get OptionFileCompiler() { return new UserOptionFileCompiler(this.Item); } } //# sourceMappingURL=UserOptionInstructionCompiler.js.map