UNPKG
@paroicms/internal-server-lib
Version:
latest (1.22.3)
1.22.3
1.22.2
1.22.1
1.22.0
1.21.2
1.21.1
1.21.0
1.20.4
1.20.3
1.20.2
1.20.1
1.20.0
1.19.0
1.18.13
1.18.12
1.18.11
1.18.10
1.18.9
1.18.8
1.18.7
1.18.6
1.18.5
1.18.4
1.18.3
1.18.2
1.18.1
1.18.0
1.17.0
1.16.3
1.16.2
1.16.1
1.16.0
1.15.5
1.15.4
1.15.3
1.15.2
1.15.1
1.15.0
1.14.0
1.13.1
1.13.0
1.12.1
1.12.0
1.11.7
1.11.6
1.11.5
1.11.4
1.11.3
1.11.2
1.11.1
1.11.0
1.10.1
1.10.0
1.9.2
1.9.1
1.9.0
1.8.13
1.8.12
1.8.11
1.8.10
1.8.9
1.8.8
1.8.7
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.7.10
1.7.9
1.7.8
1.7.7
1.7.6
1.7.5
1.7.4
1.7.3
1.7.2
1.7.1
1.7.0
1.6.3
1.6.2
1.6.1
1.6.0
Common utilitaries for the paroicms server.
gitlab.com/paroi/opensource/paroicms
@paroicms/internal-server-lib
/
dist
/
public.types.d.ts
8 lines
(7 loc)
•
253 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
BasicAppLogger
{
error
(...
messages
:
any
[]):
void
;
warn
(...
messages
:
any
[]):
void
;
info
(...
messages
:
any
[]):
void
;
debug
(...
messages
:
any
[]):
void
; }
export
type
BasicAppLoggerLevel
=
"error"
|
"warn"
|
"info"
|
"debug"
;