UNPKG

@allthings/cloud-toolkit

Version:

Standardizes the setup of aws, datadog and other things

4 lines (3 loc) 219 B
export type Middleware<T> = (...arguments_: any[]) => T; declare const applyMiddleware: <T>(middlewareList: readonly Middleware<T>[], initialData: T, ...arguments_: any[]) => Promise<T>; export default applyMiddleware;