UNPKG

344 BTypeScriptView Raw
1import middy from '@middy/core'
2
3interface Options {
4 logger?: (message: any) => void
5 awsContext?: boolean
6 omitPaths?: string[]
7 mask?: string
8 replacer?: (this: any, key: string, value: any) => any | Array<number | string>
9}
10
11declare function inputOutputLogger (options?: Options): middy.MiddlewareObj
12
13export default inputOutputLogger
14
\No newline at end of file