nerdbank-streams
Version:
Multiplexing of streams
20 lines (17 loc) • 343 B
text/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
}