IPathElement
[ Interface ]
export interface IPathElement{
name: string;
event?: string;
page?: string;
data?: string;
clickable?: boolean;
}
Properties
Name | Type | Description |
---|---|---|
name | Name of the element | |
event | Event of the element | |
page | Page of the element | |
data | Data of the element | |
clickable | Defines whether interaction with the element is possible |
Available from version 1.12 |