mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 22:10:41 -07:00
perf: make the most of streamed rendering
This commit is contained in:
@@ -1,4 +1,11 @@
|
||||
export interface Emitter {
|
||||
/**
|
||||
* Write a html value into emitter
|
||||
* @param html string, Drop or other primitive value
|
||||
*/
|
||||
write (html: any): void;
|
||||
end (): void;
|
||||
/**
|
||||
* Buffered string
|
||||
*/
|
||||
buffer: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user