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 Parameters
Section titled “Type Parameters”| Type Parameter |
|---|
TData |
Properties
Section titled “Properties”nextCursor?
Section titled “nextCursor?”optional nextCursor?: string;Defined in: client/src/types/types.ts:24
results
Section titled “results”results: TData[];Defined in: client/src/types/types.ts:23