UNPKG

@manuth/woltlab-compiler

Version:

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

8 lines (7 loc) 297 B
import { INamedObject } from "../../INamedObject.js"; import { IDeleteInstruction } from "./IDeleteInstruction.js"; /** * Represents an instruction which provides the functionality to delete named objects. */ export interface INamedDeleteInstruction extends IDeleteInstruction<INamedObject> { }