@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
23 lines • 697 B
JavaScript
import { CronJobFileCompiler } from "../../Tasks/CronJobFileCompiler.js";
import { InstructionFileCompiler } from "./InstructionFileCompiler.js";
/**
* Provides the functionality to compile cronjob-instructions.
*/
export class CronJobInstructionCompiler extends InstructionFileCompiler {
/**
* Initializes a new instance of the {@link CronJobInstructionCompiler `CronJobInstructionCompiler`} class.
*
* @param item
* The item to compile.
*/
constructor(item) {
super(item);
}
/**
* @inheritdoc
*/
get FileCompiler() {
return new CronJobFileCompiler(this.Item);
}
}
//# sourceMappingURL=CronJobInstructionCompiler.js.map