UNPKG

1.34 kBTypeScriptView Raw
1/*!
2 * Copyright 2017 Google Inc. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16import * as grpc from '@grpc/grpc-js';
17import { GrpcOperation } from './operation';
18import { GrpcService } from './service';
19import { GrpcServiceObject } from './service-object';
20declare const Service: typeof GrpcService;
21declare const ServiceObject: typeof GrpcServiceObject;
22declare const Operation: typeof GrpcOperation;
23/*!
24 * @module commonGrpc
25 */
26/**
27 * @type {module:commonGrpc/operation}
28 */
29export { Operation };
30/**
31 * @type {module:commonGrpc/serviceObject}
32 */
33export { ServiceObject };
34/**
35 * @type {module:commonGrpc/service}
36 */
37export { Service };
38/**
39 * @type {module:commonGrpc/grpc}
40 */
41export { grpc };
42/**
43 * @type {module:common/util}
44 * @private
45 */
46export { util } from '@google-cloud/common';