@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
25 lines (24 loc) • 446 B
TypeScript
/**
* Represents a node.
*/
export interface INode {
/**
* Gets or sets the id of the node.
*/
ID: string;
/**
* Gets or sets the name of the node.
*/
Name: string;
/**
* Gets the full name of the node.
*/
FullName: string;
/**
* Gets the identifiable objects of the node.
*
* @returns
* The objects of the node.
*/
GetObjects(): Record<string, unknown>;
}