summaryrefslogtreecommitdiff
path: root/cli/bench/testdata/npm/hono/dist/utils/html.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/testdata/npm/hono/dist/utils/html.d.ts')
-rw-r--r--cli/bench/testdata/npm/hono/dist/utils/html.d.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/bench/testdata/npm/hono/dist/utils/html.d.ts b/cli/bench/testdata/npm/hono/dist/utils/html.d.ts
new file mode 100644
index 000000000..d8d5cd4e7
--- /dev/null
+++ b/cli/bench/testdata/npm/hono/dist/utils/html.d.ts
@@ -0,0 +1,6 @@
+export declare type HtmlEscaped = {
+ isEscaped: true;
+};
+export declare type HtmlEscapedString = string & HtmlEscaped;
+export declare type StringBuffer = [string];
+export declare const escapeToBuffer: (str: string, buffer: StringBuffer) => void;