1 | // @ts-check |
||
2 | import autoForm from './autoForm'; |
||
3 | import clipboardButton from './clipboardButton'; |
||
4 | import eventCalendar from './eventCalendar'; |
||
5 | import eventForm from './eventForm'; |
||
6 | import frame from './frame'; |
||
7 | import frameForm from './frameForm'; |
||
8 | import monthNavigator from './monthNavigator'; |
||
9 | import navMenuButton from './navMenuButton'; |
||
10 | import themeToggler from './themeToggler'; |
||
11 | import './dialogTrigger'; |
||
12 | import './formSubmit'; |
||
13 | |||
14 | customElements.define('pc-auto-form', autoForm); |
||
0 ignored issues
–
show
|
|||
15 | customElements.define('pc-clipboard-button', clipboardButton); |
||
16 | customElements.define('pc-eventcalendar', eventCalendar); |
||
17 | customElements.define('pc-event-form', eventForm); |
||
18 | customElements.define('pc-frame', frame); |
||
19 | customElements.define('pc-frame-form', frameForm); |
||
20 | customElements.define('pc-month-navigator', monthNavigator); |
||
21 | customElements.define('pc-nav-menu-button', navMenuButton); |
||
22 | customElements.define('pc-theme-toggler', themeToggler); |
||
23 |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.