We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// mod.ts export * from 'https://cdn.pika.dev/vtils@3.0.1-beta.2'
// a.ts import * as vtils from './mod.ts' console.log(Object.keys(vtils).includes('isNumber'))
deno run -A -r a.ts:
deno run -A -r a.ts
// b.ts import * as vtils from './mod.ts' console.log(vtils.isNumber)
deno run -A -r b.ts:
deno run -A -r b.ts
// c.ts import * as vtils from 'https://cdn.pika.dev/vtils@3.0.1-beta.2' console.log(vtils.isNumber)
deno run -A -r c.ts:
deno run -A -r c.ts
The text was updated successfully, but these errors were encountered:
I see a similar effect when using @deno-types and re-export
@deno-types
Sorry, something went wrong.
Need to try to address in #7225.
dd95281
kitsonk
No branches or pull requests
deno run -A -r a.ts
:deno run -A -r b.ts
:deno run -A -r c.ts
:The text was updated successfully, but these errors were encountered: