import * as grpcWeb from 'grpc-web'; import * as repository_pb from './repository_pb'; // proto import: "repository.proto" export class PackageRepositoryClient { constructor (hostname: string, credentials?: null | { [index: string]: string; }, options?: null | { [index: string]: any; }); downloadBundle( request: repository_pb.DownloadBundleRequest, metadata?: grpcWeb.Metadata ): grpcWeb.ClientReadableStream; } export class PackageRepositoryPromiseClient { constructor (hostname: string, credentials?: null | { [index: string]: string; }, options?: null | { [index: string]: any; }); downloadBundle( request: repository_pb.DownloadBundleRequest, metadata?: grpcWeb.Metadata ): grpcWeb.ClientReadableStream; }