UNPKG

woltlab-compiler

Version:

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

27 lines (26 loc) 798 B
import { CronJobInstruction } from "../../PackageSystem/Instructions/Tasks/CronJobInstruction"; import { NamedObjectDeletionFileCompiler } from "../NamedObjectDeletionFileCompiler"; /** * Provides the functionality to compile cron-job files. */ export declare class CronJobFileCompiler extends NamedObjectDeletionFileCompiler<CronJobInstruction> { /** * Initializes a new instance of the `CronJobFileCompiler` class. * * @param item * The item to compile. */ constructor(item: CronJobInstruction); /** * @inheritdoc */ protected readonly SchemaLocation: string; /** * @inheritdoc */ protected readonly ObjectTagName: string; /** * @inheritdoc */ protected CreateImport(): Element; }