UNPKG

woltlab-compiler

Version:

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

20 lines (19 loc) 615 B
import { FileSystemInstruction } from "../FileSystem/FileSystemInstruction"; import { IFileSystemInstructionOptions } from "../FileSystem/IFileSystemInstructionOptions"; /** * Represents an instruction which executes sql-code. */ export declare class SQLInstruction extends FileSystemInstruction { /** * Initializes a new instance of the `SQLInstruction` class. */ constructor(options: IFileSystemInstructionOptions); /** * @inheritdoc */ readonly Type: string; /** * @inheritdoc */ protected MakeDefaultFileName(source: string): string; }