UNPKG

@manuth/woltlab-compiler

Version:

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

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