UNPKG
cypress-contract-stubs
Version:
latest (0.6.0)
0.6.0
0.5.0
0.2.1
0.2.0
0.1.5
0.1.4
0.1.3
0.1.2
0.0.6
0.0.3
0.0.2
Cypress plugin for Spring Contract Stubs
gcirone/cypress-contract-stubs
cypress-contract-stubs
/
plugin
/
utils
/
debug.d.ts
8 lines
(7 loc)
•
229 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
declare
function
debugLog
(
type
:
string
, ...
args
:
unknown
[]
):
void
;
declare
function
errorLog
(
error
:
string
|
ErrorEvent
):
void
;
export
declare
const
logger
: {
debug
:
typeof
debugLog;
error
:
typeof
errorLog; };
export
{};