UNPKG

hdckit

Version:

A pure Node.js client for the OpenHarmony Device Connector

16 lines (15 loc) 566 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.HilogCommand = void 0; const Command_1 = __importDefault(require("../Command")); const Hilog_1 = __importDefault(require("../Hilog")); class HilogCommand extends Command_1.default { async execute() { this.send('shell hilog -v wrap -v epoch'); return new Hilog_1.default(this); } } exports.HilogCommand = HilogCommand;