UNPKG

239 BTypeScriptView Raw
1export interface Emitter {
2 /**
3 * Write a html value into emitter
4 * @param html string, Drop or other primitive value
5 */
6 write(html: any): void;
7 /**
8 * Buffered string
9 */
10 buffer: string;
11}