feat(core): add jsdoc for components configuration property

This commit is contained in:
Ayo Ayco 2024-12-27 15:05:13 +01:00
parent 7d1de4481f
commit 628243214a

View file

@ -1,7 +1,9 @@
/**
* @typedef {{
* components: 'js'
* }} McFlyConfig
* @typedef {Object} McFlyConfig
* @property {'js' | 'lit'} components
* Type of components used:
* - `'js'` = Vanilla
* - `'lit'` = Lit
*/
/**