pamoja for TypeScript - v0.2.0
    Preparing search index...

    Interface SerialSettings

    A port's speed and character format: eight data bits, with the parity and stop bits given.

    interface SerialSettings {
        baud: number;
        parity?: Parity;
        stopBits?: number;
    }
    Index
    baud: number

    The speed, in bits a second.

    parity?: Parity

    The parity bit, none unless given.

    stopBits?: number

    1 or 2 stop bits, 1 unless given.