microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
6a465861663d7c6f9433e89c6f6619df320dcef3

Branches

Tags

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

Clone

HTTPS

Download ZIP

lib/app-center-node-client/README.md

36lines · modepreview

# Introduction
AppCenter NodeJS client generated by AutoRest and swagger-tools.

# Getting Started
To install use local installation or npm package.

# Build and Test
No building required for this package.

# Contribute
DO NOT contribute to this repo because it contains automatically generated content.
Contribute to https://msmobilecenter.visualstudio.com/Mobile-Center/Build/_git/swagger-tools.

# How to use

1) Simple client usage

```
    import { AppCenterClient } from 'app-center-node-client';

    const client = new AppCenterClient('api token here');

    console.log(client.account.apps.create({
        displayName: 'test',
        os: 'iOS',
        platform: 'mobile'
    }));
```

2) Importing models

Import models from `/models` index path.

```
    import { FileAsset } from 'app-center-node-client/models';
```