UNPKG

woltlab-compiler

Version:

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

11 lines (10 loc) 287 B
import { IInstruction } from "./IInstruction"; /** * Represents an instruction which provides the functionality to delete objects. */ export interface IDeleteInstruction<T> extends IInstruction { /** * Gets the objects to delete. */ ObjectsToDelete: T[]; }