UNPKG

@manuth/woltlab-compiler

Version:

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

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