UNPKG

@azure-rest/maps-render

Version:
15 lines 717 B
import { ClientOptions } from "@azure-rest/core-client"; import { KeyCredential } from "@azure/core-auth"; import { MapsRenderClient } from "./clientDefinitions.js"; /** The optional parameters for the client */ export interface MapsRenderClientOptions extends ClientOptions { /** The api version option of the client */ apiVersion?: string; } /** * Initialize a new instance of `MapsRenderClient` * @param credentials - uniquely identify client credential * @param options - the parameter for all optional parameters */ export default function createClient(credentials: KeyCredential, { apiVersion, ...options }?: MapsRenderClientOptions): MapsRenderClient; //# sourceMappingURL=mapsRenderClient.d.ts.map