UNPKG

@azure/search-documents

Version:
15 lines 857 B
import type { Client, ClientOptions } from "@azure-rest/core-client"; import type { KeyCredential, TokenCredential } from "@azure/core-auth"; export interface SearchIndexerContext extends Client { /** The API version to use for this operation. */ /** Known values of {@link KnownVersions} that the service accepts. */ apiVersion?: string; } /** Optional parameters for the client. */ export interface SearchIndexerClientOptionalParams extends ClientOptions { /** The API version to use for this operation. */ /** Known values of {@link KnownVersions} that the service accepts. */ apiVersion?: string; } export declare function createSearchIndexer(endpointParam: string, credential: KeyCredential | TokenCredential, options?: SearchIndexerClientOptionalParams): SearchIndexerContext; //# sourceMappingURL=searchIndexerContext.d.ts.map