UNPKG
@jschmold/kor
Version:
latest (0.0.8)
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.2
0.0.1
`npm i mocha ts-node typedoc typescript --global`
github.com/jschmold/kor
jschmold/kor
@jschmold/kor
/
dist
/
core
/
logging.d.ts
5 lines
(4 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
import
{
IKorApplicationSettings
}
from
'./application'
;
export
declare
type
LogLevel
=
'debug'
|
'log'
|
'info'
|
'warn'
|
'error'
|
'silence'
;
export
declare
function
restoreLogging
(
):
void
;
export
declare
function
initializeLogging
(
settings
:
IKorApplicationSettings
):
void
;