summaryrefslogtreecommitdiff
path: root/node_modules/liquidjs/dist/template/html.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/liquidjs/dist/template/html.d.ts')
-rw-r--r--node_modules/liquidjs/dist/template/html.d.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/node_modules/liquidjs/dist/template/html.d.ts b/node_modules/liquidjs/dist/template/html.d.ts
new file mode 100644
index 0000000..8b8136d
--- /dev/null
+++ b/node_modules/liquidjs/dist/template/html.d.ts
@@ -0,0 +1,9 @@
+import { TemplateImpl, Template } from '../template';
+import { HTMLToken } from '../tokens';
+import { Context } from '../context';
+import { Emitter } from '../emitters';
+export declare class HTML extends TemplateImpl<HTMLToken> implements Template {
+ private str;
+ constructor(token: HTMLToken);
+ render(ctx: Context, emitter: Emitter): IterableIterator<void>;
+}