UNPKG

woltlab-compiler

Version:

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

11 lines (10 loc) 293 B
import { IInstructionOptions } from "./IInstructionOptions"; /** * Provides options for the `IDeleteInstruction<T>` interface. */ export interface IDeleteInstructionOptions<T> extends IInstructionOptions { /** * The objects to delete. */ ObjectsToDelete?: T[]; }