web-blog/node_modules/liquidjs/dist/emitters/emitter.d.ts

12 lines
239 B
TypeScript
Raw Normal View History

2026-05-29 18:34:34 +00: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;
}