(
endpoint: string,
creds: grpc.ChannelCredentials,
preconnect: PreconnectServices,
options: grpc.ClientOptions | undefined,
)
| 109 | } |
| 110 | |
| 111 | static create( |
| 112 | endpoint: string, |
| 113 | creds: grpc.ChannelCredentials, |
| 114 | preconnect: PreconnectServices, |
| 115 | options: grpc.ClientOptions | undefined, |
| 116 | ) { |
| 117 | return new Proxy({} as any, new ZedClient(endpoint, creds, preconnect, options)); |
| 118 | } |
| 119 | |
| 120 | close = () => { |
| 121 | [ |
no outgoing calls
no test coverage detected