@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
23 lines • 688 B
JavaScript
import { EmojiFileCompiler } from "../../Presentation/EmojiFileCompiler.js";
import { InstructionFileCompiler } from "./InstructionFileCompiler.js";
/**
* Provides the functionality to compile emoji-instructions.
*/
export class EmojiInstructionCompiler extends InstructionFileCompiler {
/**
* Initializes a new instance of the {@link EmojiInstructionCompiler `EmojiInstructionCompiler`} class.
*
* @param item
* The item to compile.
*/
constructor(item) {
super(item);
}
/**
* @inheritdoc
*/
get FileCompiler() {
return new EmojiFileCompiler(this.Item);
}
}
//# sourceMappingURL=EmojiInstructionCompiler.js.map