microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
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 | |
| 7 | import { ServiceClientOptions } from 'ms-rest'; |
| 8 | |
| 9 | import Account = require('./account/accountClient'); |
| 10 | import Codepush = require('./codepush/codepushClient'); |
| 11 | |
| 12 | |
| 13 | declare 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 | |
| 39 | export = AppCenterClient; |
| 40 | |