diff options
author | Carter Snook <cartersnook04@gmail.com> | 2022-07-04 00:41:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-04 15:41:52 +1000 |
commit | 8941a39fe54cf746caae71a3b460fbd874d4c994 (patch) | |
tree | fb96edab02397da377d4cf211adff2780a99e4ba /cli/dts/lib.deno.unstable.d.ts | |
parent | 2d15e926f9cf45b5e689c6e6ed038cd4b3790a7a (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.ts | 2 |
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; |