@azure/search-documents
Version:
Azure client library to use AI Search for node.js and browser.
15 lines • 845 B
TypeScript
import type { Client, ClientOptions } from "@azure-rest/core-client";
import type { KeyCredential, TokenCredential } from "@azure/core-auth";
export interface SearchIndexContext 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 SearchIndexClientOptionalParams extends ClientOptions {
/** The API version to use for this operation. */
/** Known values of {@link KnownVersions} that the service accepts. */
apiVersion?: string;
}
export declare function createSearchIndex(endpointParam: string, credential: KeyCredential | TokenCredential, options?: SearchIndexClientOptionalParams): SearchIndexContext;
//# sourceMappingURL=searchIndexContext.d.ts.map