UNPKG

@manuth/woltlab-compiler

Version:

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

23 lines (22 loc) 776 B
import { ApplicationFileSystemInstruction } from "../../FileSystem/ApplicationFileSystemInstruction.js"; import { IApplicationFileSystemInstructionOptions } from "../../FileSystem/IApplicationFileSystemInstructionOptions.js"; /** * Represents an instruction which provides templates. */ export declare class TemplateInstruction extends ApplicationFileSystemInstruction { /** * Initializes a new instance of the {@link TemplateInstruction `TemplateInstruction`} class. * * @param options * The options of the template-instruction. */ constructor(options: IApplicationFileSystemInstructionOptions); /** * @inheritdoc */ get Type(): string; /** * @inheritdoc */ protected get AssetDirectoryName(): string; }