Skip to content

SearchResult

type SearchResult<TData> = {
nextCursor?: string;
results: TData[];
};

Defined in: client/src/types/types.ts:22

A page of entity records, plus the cursor to fetch the next page (if any).

Type Parameter
TData
optional nextCursor?: string;

Defined in: client/src/types/types.ts:24


results: TData[];

Defined in: client/src/types/types.ts:23