Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Hits

import type { Hits } from "https://aws-api.deno.dev/v0.3/services/cloudsearchdomain.ts?docs=full";

The collection of documents that match the search request.

interface Hits {
cursor?: string | null;
found?: number | null;
hit?: Hit[] | null;
start?: number | null;
}

§Properties

§
cursor?: string | null
[src]

A cursor that can be used to retrieve the next set of matching documents when you want to page through a large result set.

§
found?: number | null
[src]

The total number of documents that match the search request.

§
hit?: Hit[] | null
[src]

A document that matches the search request.

§
start?: number | null
[src]

The index of the first matching document.