UNPKG

woltlab-compiler

Version:

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

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