summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
authorCarter Snook <cartersnook04@gmail.com>2022-07-04 00:41:52 -0500
committerGitHub <noreply@github.com>2022-07-04 15:41:52 +1000
commit8941a39fe54cf746caae71a3b460fbd874d4c994 (patch)
treefb96edab02397da377d4cf211adff2780a99e4ba /cli/dts/lib.deno.unstable.d.ts
parent2d15e926f9cf45b5e689c6e6ed038cd4b3790a7a (diff)
fix(dts): stop default export type behavior (#14977)
Ref: #14976
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r--cli/dts/lib.deno.unstable.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts
index ac27648fe..d82e07be0 100644
--- a/cli/dts/lib.deno.unstable.d.ts
+++ b/cli/dts/lib.deno.unstable.d.ts
@@ -4,6 +4,8 @@
/// <reference lib="deno.ns" />
declare namespace Deno {
+ export {}; // stop default export type behavior
+
export interface BenchDefinition {
fn: () => void | Promise<void>;
name: string;