UNPKG
@broxus/locklift-deploy
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
Locklift plugin for replicable deployments and easy testing
@broxus/locklift-deploy
/
dist
/
logger.d.ts
10 lines
(9 loc)
•
271 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
WriteDeployInfo
}
from
"./types"
;
export
declare
class
Logger
{
printDeployLog
:
(
info
:
WriteDeployInfo
) =>
void
;
printRetrievedLog
:
(
info
: {
type
:
"Contract"
|
"Account"
; address:
string
; deploymentName:
string
; }
) =>
void
; }