UNPKG

woltlab-compiler

Version:

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

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