| 2 | const CONTEXT_SYMBOL = Symbol.for('aws.lambda.runtime.context'); |
| 3 | |
| 4 | export interface ContextMap { |
| 5 | awsRequestId: string; |
| 6 | [key: string]: unknown; |
| 7 | } |
| 8 | |
| 9 | export interface ContextStorageProvider { |
| 10 | getContext: () => ContextMap; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…