mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 21:00:40 -07:00
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
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;
|
|
}
|