int-cli
Version:
INT is the new generation of bottom-up created system of IoT and blockchain
19 lines (18 loc) • 380 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const core_1 = require("../../core");
class ChainEventFilter {
constructor(filters) {
this.m_filters = filters;
}
init() {
return core_1.ErrorCode.RESULT_OK;
}
get(options) {
}
watch() {
}
stop() {
}
}
exports.ChainEventFilter = ChainEventFilter;
;