@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
29 lines (28 loc) • 812 B
TypeScript
import { FileSystemInstruction } from "../FileSystem/FileSystemInstruction.js";
import { IFileSystemInstructionOptions } from "../FileSystem/IFileSystemInstructionOptions.js";
/**
* Represents an instruction which executes sql-code.
*/
export declare class SQLInstruction extends FileSystemInstruction {
/**
* Initializes a new instance of the {@link SQLInstruction `SQLInstruction`} class.
*
* @param options
* The options of the sql-instruction.
*/
constructor(options: IFileSystemInstructionOptions);
/**
* @inheritdoc
*/
get Type(): string;
/**
* @inheritdoc
*
* @param source
* The source of the instruction.
*
* @returns
* The default filename.
*/
protected MakeDefaultFileName(source: string): string;
}