UNPKG

woltlab-compiler

Version:

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

20 lines (19 loc) 709 B
import { CronJobInstruction } from "../../../PackageSystem/Instructions/Tasks/CronJobInstruction"; import { Compiler } from "../../Compiler"; import { TemplateInstructionCompiler } from "./TemplateInstructionCompiler"; /** * Provides the functionality to compile cronjob-instructions. */ export declare class CronJobInstructionCompiler extends TemplateInstructionCompiler<CronJobInstruction> { /** * Initializes a new instance of the `CronJobInstructionCompiler` class. * * @param item * The item to compile. */ constructor(item: CronJobInstruction); /** * @inheritdoc */ protected readonly FileCompiler: Compiler<CronJobInstruction>; }