nerdbank-streams
Version:
Multiplexing of streams
18 lines (17 loc) • 380 B
TypeScript
/**
* Describes an offer for a channel.
*/
export interface IChannelOfferEventArgs {
/**
* Gets the unique ID of the channel.
*/
readonly id: number;
/**
* Gets the name of the channel.
*/
readonly name: string;
/**
* Gets a value indicating whether the channel has already been accepted.
*/
readonly isAccepted: boolean;
}