Files

12 lines
228 B
TypeScript
Raw Permalink Normal View History

2026-03-31 16:38:22 -07:00
export interface Emitter {
/**
* Write a html value into emitter
* @param html string, Drop or other primitive value
*/
write(html: any): void;
/**
* Buffered string
*/
buffer: string;
}