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

Hit

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

Information about a document that matches the search request.

interface Hit {
exprs?: {
[key: string]: string | null | undefined;
}
| null;
fields?: {
[key: string]: string[] | null | undefined;
}
| null;
highlights?: {
[key: string]: string | null | undefined;
}
| null;
id?: string | null;
}

§Properties

§
exprs?: {
[key: string]: string | null | undefined;
}
| null
[src]

The expressions returned from a document that matches the search request.

§
fields?: {
[key: string]: string[] | null | undefined;
}
| null
[src]

The fields returned from a document that matches the search request.

§
highlights?: {
[key: string]: string | null | undefined;
}
| null
[src]

The highlights returned from a document that matches the search request.

§
id?: string | null
[src]

The document ID of a document that matches the search request.