UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

12 lines (10 loc) 289 B
import { out } from "../../../util/interaction"; import { models } from "../../../util/apis"; export function reportProfile(user: models.UserProfileResponse): void { out.report( [ ["Username", "name" ], [ "Display Name", "displayName" ], [ "Email", "email"] ], user); }