UNPKG
@code-gorilla-au/vue-forms
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
form authoring light weight framework
github.com/code-gorilla-au/vue-forms
code-gorilla-au/vue-forms
@code-gorilla-au/vue-forms
/
dist
/
lib
/
logger.d.ts
9 lines
(8 loc)
•
227 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
LoggerOptions
{
debug
:
boolean
; }
export
declare
function
logger
(
{ debug }?:
LoggerOptions
): {
log
(...
args
:
unknown
[]):
void
;
warn
(...
args
:
unknown
[]):
void
;
error
(...
args
:
unknown
[]):
void
; };