UNPKG

@manuth/woltlab-compiler

Version:

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

11 lines (10 loc) 236 B
import { ICategory as ICategoryBase } from "../ICategory.js"; /** * Represents a category. */ export interface ICategory<T> extends ICategoryBase { /** * Gets the options of the category. */ Options: readonly T[]; }