| 1 | export 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 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…