grpc_tools_node_protoc_ts
Version:
Generate d.ts definitions for generated js files from grpc_tools_node_protoc
14 lines • 484 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Debug = void 0;
const LibUtil = require("util");
const LibFs = require("fs");
const LOG_PATH = "/tmp/protoc-gen-ts.debug.log";
var Debug;
(function (Debug) {
function log(info) {
LibFs.appendFileSync(LOG_PATH, LibUtil.inspect(info, { showHidden: true, depth: null }) + "\n");
}
Debug.log = log;
})(Debug = exports.Debug || (exports.Debug = {}));
//# sourceMappingURL=Debug.js.map
;