src/modules/minimap/components/item-properties.intf.ts
Represents the properties of an item inside the Stark Minimap component.
Properties |
label |
label:
|
Type : string
|
Optional |
The label of the item (optional). If not provided, then the name of the item will be used. |
name |
name:
|
Type : string
|
The name of the item |
export interface StarkMinimapItemProperties {
/**
* The name of the item
*/
name: string;
/**
* The label of the item (optional). If not provided, then the name of the item will be used.
*/
label?: string;
}