UNPKG

ask-sdk-runtime

Version:
7 lines (6 loc) 178 B
/** * An interface containing the logic to execute before handler is called. */ export interface RequestInterceptor<Input> { process(input: Input): Promise<void> | void; }