@pbkit/runtime
Advanced tools
Comparing version 0.0.29 to 0.0.30
{ | ||
"name": "@pbkit/runtime", | ||
"version": "0.0.29", | ||
"version": "0.0.30", | ||
"author": "JongChan Choi <jong@chan.moe>", | ||
@@ -5,0 +5,0 @@ "license": "(MIT OR Apache-2.0)", |
@@ -8,8 +8,8 @@ import type { RpcClientImpl } from "./rpc"; | ||
} | ||
export interface WrapRpcClientImplConfig { | ||
rpcClientImpl: RpcClientImpl; | ||
export interface WrapRpcClientImplConfig<TMetadata, THeader, TTrailer> { | ||
rpcClientImpl: RpcClientImpl<TMetadata, THeader, TTrailer>; | ||
devtoolsConfig: DevtoolsConfig; | ||
tags: string[]; | ||
} | ||
export declare function wrapRpcClientImpl<TMetadata, THeader, TTrailer>(config: WrapRpcClientImplConfig): RpcClientImpl<TMetadata, THeader, TTrailer>; | ||
export declare function wrapRpcClientImpl<TMetadata, THeader, TTrailer>(config: WrapRpcClientImplConfig<TMetadata, THeader, TTrailer>): RpcClientImpl<TMetadata, THeader, TTrailer>; | ||
interface Events { | ||
@@ -16,0 +16,0 @@ "request": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44684