Websites v4 docs v5.2.5
    Preparing search index...

    Type Alias UseLoadPropertiesResults

    type UseLoadPropertiesResults = {
        hasNextPage?: boolean;
        hasPreviousPage?: boolean;
        loadingNextProperties: boolean;
        loadingPreviousProperties: boolean;
        nextPageSearchUrl: string;
        onLoadMore: (e?: SyntheticEvent) => void;
        onLoadPrevious: (e?: SyntheticEvent) => void;
        previousPageSearchUrl: string;
        previousProperties: SerializableProperty[];
        properties: SerializableProperty[];
        propertiesPages: Map<number, SerializableProperty[]>;
    }
    Index

    Properties

    hasNextPage?: boolean
    hasPreviousPage?: boolean
    loadingNextProperties: boolean
    loadingPreviousProperties: boolean
    nextPageSearchUrl: string
    onLoadMore: (e?: SyntheticEvent) => void
    onLoadPrevious: (e?: SyntheticEvent) => void
    previousPageSearchUrl: string
    previousProperties: SerializableProperty[]

    Deprecated

    properties: SerializableProperty[]

    Flat array of properties for backwards compatibility

    propertiesPages: Map<number, SerializableProperty[]>

    Property results as a map of pages, which is much more efficient that one huge array