@shortcut/client
    Preparing search index...

    Interface DocSearchResults

    The results of the Document search query.

    interface DocSearchResults {
        data: DocSlim[];
        next?: null | string;
        total: number;
    }
    Index

    Properties

    Properties

    data: DocSlim[]

    A list of document search results.

    next?: null | string

    The URL path and query string for the next page of search results.

    total: number

    The total number of matches for the search query. The first 1000 matches can be paged through via the API.

    int64