Type Alias DataChannelConfiguration

DataChannelConfiguration: {
    compress?: boolean;
    direction: DataChannelDirection;
    header?: MessagingHeaderField[];
    label: string;
    maxPacketLifeTime?: number;
    maxRetransmits?: number;
    ordered?: boolean;
    protocol?: string;
}