You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: Failed ensuring public API type output is valid.
TS2304 [ERROR]: Cannot find name 'foo'.
export { foo };
~~~
at file:///path/to/mod.ts:3:10
You may have discovered a bug in Deno. Please open an issue at: https://github.com/denoland/deno/issues/
additional info
replacing import foo = with const foo = works fine in this case, but wouldn't if foo was a type
mcve
mod.ts
inner.ts
and run
deno publish
error
additional info
replacing
import foo =
withconst foo =
works fine in this case, but wouldn't iffoo
was a typeversion
The text was updated successfully, but these errors were encountered: