microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
86466695ed3443c9a6a1facdfd9bce89c668afbf

Branches

Tags

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

Clone

HTTPS

Download ZIP

lib/app-center-node-client/src/test/testClient.d.ts

38lines · modecode

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