lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
11 lines (10 loc) • 426 B
TypeScript
import { ChecksumAlgorithm } from "./constants";
/**
* List of algorithms supported by client.
*/
export declare const CLIENT_SUPPORTED_ALGORITHMS: ChecksumAlgorithm[];
/**
* Priority order for validating checksum algorithm. A faster algorithm has higher priority.
* ToDo: update the priority order based on profiling of JavaScript implementations.
*/
export declare const PRIORITY_ORDER_ALGORITHMS: ChecksumAlgorithm[];