UNPKG

woltlab-compiler

Version:

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

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