( log: (options: Logger.Logger.Options<Message>) => Output )
| 34 | |
| 35 | /** @internal */ |
| 36 | export const makeLogger = <Message, Output>( |
| 37 | log: (options: Logger.Logger.Options<Message>) => Output |
| 38 | ): Logger.Logger<Message, Output> => ({ |
| 39 | [LoggerTypeId]: loggerVariance, |
| 40 | log, |
| 41 | pipe() { |
| 42 | return pipeArguments(this, arguments) |
| 43 | } |
| 44 | }) |
| 45 | |
| 46 | /** @internal */ |
| 47 | export const mapInput = dual< |
no outgoing calls
no test coverage detected