UNPKG

@manuth/woltlab-compiler

Version:

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

23 lines (22 loc) 811 B
import { ApplicationFileSystemInstruction } from "../../FileSystem/ApplicationFileSystemInstruction.js"; import { IApplicationFileSystemInstructionOptions } from "../../FileSystem/IApplicationFileSystemInstructionOptions.js"; /** * Represents an instruction which provides templates for the control panel. */ export declare 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: IApplicationFileSystemInstructionOptions); /** * @inheritdoc */ get Type(): string; /** * @inheritdoc */ protected get AssetDirectoryName(): string; }