question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Typings bug from rc20 to rc21

See original GitHub issue

Describe the bug

Bug with typings after upgrading from 2.0.0-rc20 to rc21:

Cannot extend an interface 'BvComponent'. Did you mean 'implements'?
    10 | 
    11 | // Component: b-alert
  > 12 | export declare class BAlert extends BvComponent {

This is happening with a lot of components.

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:5
  • Comments:17 (10 by maintainers)

github_iconTop GitHub Comments

8reactions
tmorehousecommented, May 27, 2019

Fix will be available in v2.0.0-rc.22 when released.

3reactions
demianhcommented, May 27, 2019

I have the same problem, and it seems the change from interface to class does the trick.

After the change, there is one error left, a few lines above the BvComponent.

Changing

export interface BvPlugin extends PluginObject {
  install: PluginFunction<BvConfigOptions>
}

to

export interface BvPlugin extends PluginObject<BvConfigOptions> {
  install: PluginFunction<BvConfigOptions>
}

fixes that problem though.

Read more comments on GitHub >

github_iconTop Results From Across the Web

eTcl bugs and comments
Fixed another bug related to color alias parsing in pixane and scene, so building, testing and pushing online 1.0-rc28 as I'm typing this...
Read more >
Changelog - HoMM3 HD
Fixed a bug: crash when ending a turn in a multiplayer game on maps larger than XL. ... 5.2 RC20 -> 5.2 RC21...
Read more >
docs/content/faq.md | discordeno@v6.1.0
Whenever I used other libraries, I was always seeing typings being inaccurate or problematic. This is because in any Discord API library, the...
Read more >
rockpack/compiler/package.json
39, "@teamsupercell/typings-for-css-modules-loader": "2.4.0",. 40, "antd-dayjs-webpack-plugin": "1.0.6",. 41, "async": "3.2.0",.
Read more >
Changelog | Misc | BootstrapVue
Bug Fixes v2.0.0-rc.20 · $bvToast,$bvModal: ensure values passed to slots are arrays for Vue. · b-nav-item-dropdown: fix disabled state (fixes #3264) (#3266 ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found