Typings bug from rc20 to rc21
See original GitHub issueDescribe 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:
- Created 4 years ago
- Reactions:5
- Comments:17 (10 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Fix will be available in v2.0.0-rc.22 when released.
I have the same problem, and it seems the change from
interface
toclass
does the trick.After the change, there is one error left, a few lines above the BvComponent.
Changing
to
fixes that problem though.