Interface SearchResultPlaces

interface SearchResultPlaces {
    item: Places;
    match: MatchInfo;
    score: number;
    type:
        | "floor"
        | "space"
        | "door"
        | "connection"
        | "object"
        | "point-of-interest"
        | "annotation";
}

Properties

Properties

item: Places
match: MatchInfo
score: number
type:
    | "floor"
    | "space"
    | "door"
    | "connection"
    | "object"
    | "point-of-interest"
    | "annotation"