UNPKG

@solarity/hardhat-migrate

Version:
16 lines 426 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Stats = void 0; class BaseStats { _stats = { currentMigration: 0, }; get currentMigration() { return this._stats.currentMigration; } set currentMigration(currentMigration) { this._stats.currentMigration = currentMigration; } } exports.Stats = new BaseStats(); //# sourceMappingURL=Stats.js.map