UNPKG

verusd-web

Version:

A Verus Blockchain library that enables a bi-directional communication with the Verus and other Verus PBaas chains.

9 lines (8 loc) 180 B
export interface DuplexServerInterface { receive(): void; send<T>(data: T): void; } export interface ServerInterface { open(): ServerInterface; close(): boolean; }