From 9340e5d967e4bcf7e21246b8597ae34d5dae6c29 Mon Sep 17 00:00:00 2001 From: Dave Gramlich Date: Mon, 25 Feb 2019 17:20:37 -0500 Subject: [PATCH] chore(typescript): export common API call types --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 8e0cadd8a..110ba632d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -34,12 +34,12 @@ import * as operationsClient from './operationsClient'; import * as routingHeader from './routingHeader'; export {GoogleAuth, GoogleAuthOptions} from 'google-auth-library'; -export {createApiCall} from './apiCallable'; +export {CancellablePromise, Canceller, createApiCall} from './apiCallable'; export {BundleDescriptor, BundleExecutor} from './bundling'; export {CallOptions, CallSettings, ClientConfig, constructSettings, RetryOptions} from './gax'; export {GoogleError} from './GoogleError'; export {ClientStub, ClientStubOptions, GoogleProtoFilesRoot, GrpcClient, GrpcClientOptions, GrpcModule, GrpcObject, Metadata, MetadataValue} from './grpc'; -export {LongrunningDescriptor, operation} from './longrunning'; +export {LongrunningDescriptor, Operation, operation} from './longrunning'; export {PageDescriptor} from './pagedIteration'; export {PathTemplate} from './pathTemplate'; export {StreamDescriptor, StreamType} from './streaming';