Interface IEspLoaderTerminal

A wrapper around your implementation of a terminal by implementing the clean, write and writeLine methods which are called by the ESPLoader class. IEspLoaderTerminal

Hierarchy

  • IEspLoaderTerminal

Properties

Properties

clean: (() => void)

Type declaration

    • (): void
    • Execute a terminal clean command.

      Returns void

write: ((data) => void)

Type declaration

    • (data): void
    • Write a string of data.

      Parameters

      • data: string

        The string to write.

      Returns void

writeLine: ((data) => void)

Type declaration

    • (data): void
    • Write a string of data that include a line terminator.

      Parameters

      • data: string

        The string to write with line terminator.

      Returns void

Generated using TypeDoc