UNPKG

@azure/data-tables

Version:
21 lines 575 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. /** * Name of the apiVersion Policy * @internal */ export const apiVersionPolicyName = "apiVersionPolicy"; /** * Pipeline policy that enables users to override the default api version * @internal */ export const apiVersionPolicy = (apiVersion) => { return { name: apiVersionPolicyName, sendRequest: async (req, next) => { req.headers.set("x-ms-version", apiVersion); return next(req); }, }; }; //# sourceMappingURL=apiVersionPolicy.js.map