UNPKG

@manuth/woltlab-compiler

Version:

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

19 lines (18 loc) 661 B
import { FileSystemInstruction } from "../../../PackageSystem/Instructions/FileSystem/FileSystemInstruction.js"; import { InstructionCompiler } from "./InstructionCompiler.js"; /** * Provides the functionality to compile an sql-instruction. */ export declare class FileSystemInstructionCompiler extends InstructionCompiler<FileSystemInstruction> { /** * Initializes a new instance of the {@link FileSystemInstructionCompiler `FileSystemInstructionCompiler`} class. * * @param item * The item to compile. */ constructor(item: FileSystemInstruction); /** * @inheritdoc */ protected Compile(): Promise<void>; }