blob: c9f2bcd1ab0b069ab4c2fdd07cdde7aa95cc85d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// `@types/node` should be included
Buffer.from("test");
// `@types/jest` should be included
test("test");
// @ts-expect-error `@cloudflare/workers-types` should NOT be included
const _handler: ExportedHandler = {};
// @ts-expect-error `@cloudflare/workers-types` should NOT be included
new HTMLRewriter();
export {};
|