UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

19 lines (18 loc) 564 B
import { InstructionSet } from "../../PackageSystem/Instructions/InstructionSet.js"; import { Compiler } from "../Compiler.js"; /** * Provides the functionality to compile instruction-sets. */ export declare class InstructionSetCompiler extends Compiler<InstructionSet> { /** * Initializes a new instance of the {@link InstructionSetCompiler `InstructionSetCompiler`} class. * * @param item * The item to compile. */ constructor(item: InstructionSet); /** * @inheritdoc */ protected Compile(): Promise<void>; }