interface CoreQuickviewState {
    content: string;
    contentURL?: string;
    currentResultUniqueId: string;
    isLoading: boolean;
    resultHasPreview: boolean;
}

Hierarchy (View Summary)

Properties

content: string

The result preview HTML content.

""
contentURL?: string

The src path to use if rendering the quickview in an iframe.

currentResultUniqueId: string

The current result unique ID,

isLoading: boolean

true if content is being fetched, and false otherwise.

resultHasPreview: boolean

true if the configured result has a preview, and false otherwise.