UNPKG

woltlab-compiler

Version:

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

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