UNPKG

woltlab-compiler

Version:

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

26 lines 886 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const CronJobFileCompiler_1 = require("../../Tasks/CronJobFileCompiler"); const TemplateInstructionCompiler_1 = require("./TemplateInstructionCompiler"); /** * Provides the functionality to compile cronjob-instructions. */ class CronJobInstructionCompiler extends TemplateInstructionCompiler_1.TemplateInstructionCompiler { /** * Initializes a new instance of the `CronJobInstructionCompiler` class. * * @param item * The item to compile. */ constructor(item) { super(item); } /** * @inheritdoc */ get FileCompiler() { return new CronJobFileCompiler_1.CronJobFileCompiler(this.Item); } } exports.CronJobInstructionCompiler = CronJobInstructionCompiler; //# sourceMappingURL=CronJobInstructionCompiler.js.map