@@ -48,7 +48,7 @@ export class ConfigReader implements Config {
|
||||
constructor(
|
||||
data: JsonObject_2 | undefined,
|
||||
context?: string,
|
||||
fallback?: ConfigReader | undefined,
|
||||
fallback?: ConfigReader,
|
||||
prefix?: string,
|
||||
);
|
||||
static fromConfigs(configs: AppConfig[]): ConfigReader;
|
||||
|
||||
@@ -518,7 +518,7 @@ export class WithPagination<
|
||||
constructor(
|
||||
createUrl: (options: PaginationOptions) => URL,
|
||||
fetch: (url: URL) => Promise<TPage>,
|
||||
pagelen?: number | undefined,
|
||||
pagelen?: number,
|
||||
);
|
||||
// (undocumented)
|
||||
getPage(options?: PaginationOptions): Promise<TPage>;
|
||||
|
||||
@@ -685,7 +685,7 @@ export class EntityUserFilter implements EntityFilter {
|
||||
// (undocumented)
|
||||
static owned(ownershipEntityRefs: string[]): EntityUserFilter;
|
||||
// (undocumented)
|
||||
readonly refs?: string[] | undefined;
|
||||
readonly refs?: string[];
|
||||
// (undocumented)
|
||||
static starred(starredEntityRefs: string[]): EntityUserFilter;
|
||||
// (undocumented)
|
||||
|
||||
@@ -348,7 +348,7 @@ export class ElasticSearchSearchEngine implements SearchEngine {
|
||||
indexPrefix: string,
|
||||
logger: LoggerService,
|
||||
batchSize: number,
|
||||
batchKeyField?: string | undefined,
|
||||
batchKeyField?: string,
|
||||
highlightOptions?: ElasticSearchHighlightOptions,
|
||||
queryOptions?: ElasticSearchQueryConfig,
|
||||
);
|
||||
|
||||
@@ -89,9 +89,9 @@ export type HighlightedSearchResultTextProps = {
|
||||
|
||||
// @public
|
||||
export class MockSearchApi implements SearchApi {
|
||||
constructor(mockedResults?: SearchResultSet | undefined);
|
||||
constructor(mockedResults?: SearchResultSet);
|
||||
// (undocumented)
|
||||
mockedResults?: SearchResultSet | undefined;
|
||||
mockedResults?: SearchResultSet;
|
||||
// (undocumented)
|
||||
query(
|
||||
_query: SearchQuery,
|
||||
|
||||
Reference in New Issue
Block a user