UNPKG
xdesign-vue-next
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
XDesign Component for vue-next
xdesign-vue-next
/
cjs
/
_common
/
js
/
log
/
types.d.ts
9 lines
(8 loc)
•
234 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
type
LogFunction
=
(
componentName
:
string
,
message
:
string
) =>
void
;
export
interface
Log
{
warn
:
LogFunction
;
warnOnce
:
LogFunction
;
error
:
LogFunction
;
errorOnce
:
LogFunction
;
info
:
LogFunction
; }