@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
9 lines • 355 B
TypeScript
import { Subject } from "rxjs";
import { ActiveStateChannel } from "../ActiveStateChannel";
export interface IUIData {
onSelectedStateChannelChanged: Subject<ActiveStateChannel>;
onVotesDelegated: Subject<void>;
onProviderIdProvided: Subject<void>;
getSelectedStateChannel: () => ActiveStateChannel;
}
//# sourceMappingURL=IUIData.d.ts.map