microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.6.3

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/extension/appcenter/lib/app-center-node-client/README.md

36lines · modecode

1# Introduction
2AppCenter NodeJS client generated by AutoRest and swagger-tools.
3
4# Getting Started
5To install use local installation or npm package.
6
7# Build and Test
8No building required for this package.
9
10# Contribute
11DO NOT contribute to this repo because it contains automatically generated content.
12Contribute to https://msmobilecenter.visualstudio.com/Mobile-Center/Build/_git/swagger-tools.
13
14# How to use
15
161) Simple client usage
17
18```
19 import { AppCenterClient } from 'app-center-node-client';
20
21 const client = new AppCenterClient('api token here');
22
23 console.log(client.account.apps.create({
24 displayName: 'test',
25 os: 'iOS',
26 platform: 'mobile'
27 }));
28```
29
302) Importing models
31
32Import models from `/models` index path.
33
34```
35 import { FileAsset } from 'app-center-node-client/models';
36```