lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
10 lines (9 loc) • 341 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.
*/
export declare const PRIORITY_ORDER_ALGORITHMS: ChecksumAlgorithm[];