UNPKG
rpc-typescript
Version:
latest (0.1.0)
0.1.0
An RCP library for TypeScript
github.com/amkherad/rpc-typescript
amkherad/rpc-typescript
rpc-typescript
/
src
/
core
/
IEndpointContext.ts
9 lines
(6 loc)
•
165 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
ContractReference
}
from
"../types"
;
export
interface
IEndpointContext
{ createChannel<T>(
contract
:
ContractReference
<T> ): T; }