woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
27 lines (26 loc) • 570 B
TypeScript
import { IPersonOptions } from "./IPersonOptions";
/**
* Represents a person.
*/
export declare class Person {
/**
* The name of the person.
*/
private name;
/**
* The url to the homepage of the person.
*/
private url;
/**
* Initializes a new instance of the `Person` class.
*/
constructor(options: IPersonOptions);
/**
* Gets or sets the name of the person.
*/
Name: string;
/**
* Gets or sets the url to the homepage of the person.
*/
URL: string;
}