Interface Emitter

interface Emitter {
    buffer: string;
    write(html: any): void;
}

Properties

Methods

Properties

buffer: string

Buffered string

Methods

  • Write a html value into emitter

    Parameters

    • html: any

      string, Drop or other primitive value

    Returns void