microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ef14e11b4dec66f85f409f65f431d7e9549c601d

Branches

Tags

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

Clone

HTTPS

Download ZIP

lib/app-center-node-client/src/appCenterClient.d.ts

39lines · modecode

1/*
2 * Code generated by Microsoft (R) SwaggerTools.
3 * Changes may cause incorrect behavior and will be lost if the code is
4 * regenerated.
5 */
6
7import { ServiceClientOptions } from 'ms-rest';
8
9import Account = require('./account/accountClient');
10import Codepush = require('./codepush/codepushClient');
11
12
13declare class AppCenterClient {
14 /**
15 * @class
16 * Initializes a new instance of the AppCenterClient class.
17 * @constructor
18 *
19 * @param {string} [baseUri] - The base URI of the service.
20 *
21 * @param {object} [options] - The parameter options
22 *
23 * @param {Array} [options.filters] - Filters to be added to the request pipeline
24 *
25 * @param {object} [options.requestOptions] - Options for the underlying request object
26 * {@link https://github.com/request/request#requestoptions-callback Options doc}
27 *
28 * @param {boolean} [options.noRetryPolicy] - If set to true, turn off default retry policy
29 *
30 */
31 constructor(credentials: any, baseUri?: string, options?: ServiceClientOptions);
32
33 account: Account;
34
35 codepush: Codepush;
36
37}
38
39export = AppCenterClient;
40