UNPKG

nestjs-opensearch

Version:
8 lines (7 loc) 342 B
import { Client } from '@opensearch-project/opensearch'; import type { OpensearchClientOptions } from './interfaces'; import { clientNameSym } from './symbols'; export declare class OpensearchClient extends Client { readonly [clientNameSym]?: string | symbol; constructor({ clientName, ...clientOptions }: OpensearchClientOptions); }