@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
28 lines • 770 B
JavaScript
import { ApplicationFileSystemInstruction } from "../../FileSystem/ApplicationFileSystemInstruction.js";
/**
* Represents an instruction which provides templates for the control panel.
*/
export class ACPTemplateInstruction extends ApplicationFileSystemInstruction {
/**
* Initializes a new instance of the {@link ACPTemplateInstruction `ACPTemplateInstruction`} class.
*
* @param options
* The options of the acp-template instruction.
*/
constructor(options) {
super(options);
}
/**
* @inheritdoc
*/
get Type() {
return "acpTemplate";
}
/**
* @inheritdoc
*/
get AssetDirectoryName() {
return "acpTemplates";
}
}
//# sourceMappingURL=ACPTemplateInstruction.js.map