UNPKG
@criticalmanufacturing/node-package-bundler
Version:
latest (1.1.0)
1.1.0
1.0.2
1.0.1
1.0.0
Connect IoT Package Bundler
github.com/criticalmanufacturing/node-packagebundler
@criticalmanufacturing/node-package-bundler
/
src
/
processors
/
log.d.ts
9 lines
(8 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
class
Log
{
debug
(
text
:
string
):
void
;
error
(
text
:
string
):
void
;
info
(
text
:
string
):
void
;
warn
(
text
:
string
):
void
;
success
(
text
:
string
):
void
;
notice
(
text
:
string
):
void
; }