UNPKG

woltlab-compiler

Version:

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

10 lines (9 loc) 159 B
/** * Represents a named object. */ export interface INamedObject { /** * Gets or sets the name of the object. */ Name: string; }