@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
11 lines (10 loc) • 313 B
TypeScript
import { IInstructionOptions } from "./IInstructionOptions.js";
/**
* Provides options for the {@link IDeleteInstruction `IDeleteInstruction<T>`} interface.
*/
export interface IDeleteInstructionOptions<T> extends IInstructionOptions {
/**
* The objects to delete.
*/
ObjectsToDelete?: T[];
}