IPathElement

[ Interface ]

export interface IPathElement{
    name: string;
    event?: string;
    page?: string;
    data?: string;
    clickable?: boolean;
}

Properties

Name

Type

Description

name

string

Name of the element

event

string

Event of the element

page

string

Page of the element

data

string

Data of the element

clickable

boolean

Defines whether interaction with the element is possible

IPathElement 1:

Available from version 1.12