UNPKG

@manuth/woltlab-compiler

Version:

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

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