Overview
Table of contents
Log (interface)
Log
Signature
interface Log {
readonly debug: Reader<string, void>
readonly error: Reader<string, void>
readonly info: Reader<string, void>
readonly log: Reader<string, void>
readonly warn: Reader<string, void>
}
Added in v0.2.0
MonadLog (interface)
Monad Log
Signature
interface MonadLog {
readonly debug: MonadFunction<string, void>
readonly error: MonadFunction<string, void>
readonly info: MonadFunction<string, void>
readonly log: MonadFunction<string, void>
readonly warn: MonadFunction<string, void>
}
Added in v0.2.0