appcenter-cli
Version:
Command line tool for Visual Studio App Center
21 lines (20 loc) • 606 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const interaction_1 = require("../../../util/interaction");
function reportTokenInfo(token) {
interaction_1.out.report([
["ID", "id"],
["Description", "description"],
["Created at", "createdAt"]
], token);
}
exports.reportTokenInfo = reportTokenInfo;
function reportToken(token) {
interaction_1.out.report([
["ID", "id"],
["API Token", "apiToken"],
["Description", "description"],
["Created at", "createdAt"]
], token);
}
exports.reportToken = reportToken;