mirror of
https://github.com/JonasunderscoreJones/api.jonasjones.dev.git
synced 2025-10-23 12:09:19 +02:00
12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
// `@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 {};
|