lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
10 lines (9 loc) • 419 B
TypeScript
import { Provider, UserAgent } from "@smithy/types";
import { DefaultUserAgentOptions } from "./configurations";
/**
* @internal
*
* Default provider to the user agent in browsers. It's a best effort to infer
* the device information. It uses bowser library to detect the browser and version
*/
export declare const defaultUserAgent: ({ serviceId, clientVersion }: DefaultUserAgentOptions) => Provider<UserAgent>;