UNPKG

@manuth/woltlab-compiler

Version:

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

28 lines 726 B
import { ApplicationFileSystemInstruction } from "../../FileSystem/ApplicationFileSystemInstruction.js"; /** * Represents an instruction which provides templates. */ export class TemplateInstruction extends ApplicationFileSystemInstruction { /** * Initializes a new instance of the {@link TemplateInstruction `TemplateInstruction`} class. * * @param options * The options of the template-instruction. */ constructor(options) { super(options); } /** * @inheritdoc */ get Type() { return "template"; } /** * @inheritdoc */ get AssetDirectoryName() { return "templates"; } } //# sourceMappingURL=TemplateInstruction.js.map