@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
20 lines (19 loc) • 719 B
TypeScript
import { CronJobInstruction } from "../../../PackageSystem/Instructions/Tasks/CronJobInstruction.js";
import { Compiler } from "../../Compiler.js";
import { InstructionFileCompiler } from "./InstructionFileCompiler.js";
/**
* Provides the functionality to compile cronjob-instructions.
*/
export declare class CronJobInstructionCompiler extends InstructionFileCompiler<CronJobInstruction> {
/**
* Initializes a new instance of the {@link CronJobInstructionCompiler `CronJobInstructionCompiler`} class.
*
* @param item
* The item to compile.
*/
constructor(item: CronJobInstruction);
/**
* @inheritdoc
*/
protected get FileCompiler(): Compiler<CronJobInstruction>;
}