UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

20 lines (19 loc) 716 B
import { ApplicationFileSystemInstruction } from "../../FileSystem/ApplicationFileSystemInstruction"; import { IApplicationFileSystemInstructionOptions } from "../../FileSystem/IApplicationFileSystemInstructionOptions"; /** * Represents an instruction which provides templates for the control panel. */ export declare class ACPTemplateInstruction extends ApplicationFileSystemInstruction { /** * Initializes a new instance of the `ACPTemplateInstruction` class. */ constructor(options: IApplicationFileSystemInstructionOptions); /** * @inheritdoc */ readonly Type: string; /** * @inheritdoc */ MakeDefaultFileName(source: string): string; }