UNPKG

nativescript

Version:

Command-line interface for building NativeScript projects

22 lines 474 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OsInfo = void 0; const os = require("os"); const yok_1 = require("./yok"); class OsInfo { type() { return os.type(); } release() { return os.release(); } arch() { return os.arch(); } platform() { return os.platform(); } } exports.OsInfo = OsInfo; yok_1.injector.register("osInfo", OsInfo); //# sourceMappingURL=os-info.js.map