@azure/search-documents
Version:
Azure client library to use AI Search for node.js and browser.
15 lines • 857 B
TypeScript
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