blob: 6f6fd00e60363ca4ab048f8dff48da6e34bef0c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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;
}
|