UNPKG

lambda-remote-context

Version:

Lifecycle management (RemoteContext) and wrapping (RemoteClient) for third party adapters

5 lines (4 loc) 118 B
export interface RemoteClientLifecycle<T> { init: () => Promise<T>; cleanUp?: (client: T) => Promise<void>; }