UNPKG

woltlab-compiler

Version:

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

14 lines (13 loc) 246 B
/** * Provides options for the `Person` class. */ export interface IPersonOptions { /** * The name of the person. */ Name: string; /** * The url to the homepage of the person. */ URL?: string; }