From 447d2f9f7583e353582f9ac48175b8cdae7c9cd4 Mon Sep 17 00:00:00 2001 From: Jeremy Meng Date: Wed, 3 Feb 2021 18:36:30 +0000 Subject: [PATCH] Add missing file --- dom-shim.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dom-shim.d.ts diff --git a/dom-shim.d.ts b/dom-shim.d.ts new file mode 100644 index 0000000..cb4ac4d --- /dev/null +++ b/dom-shim.d.ts @@ -0,0 +1,10 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +// d.ts shims provide types for things we use internally but are not part +// of this package's surface area. + +interface Request {} +interface RequestInit {} +interface Response {} +interface Headers {}