mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-11 09:49:12 +00:00
13 lines
317 B
Handlebars
13 lines
317 B
Handlebars
import {{ properCase tag }} from './{{ tagWithoutPrefix tag }}.component.js';
|
|
|
|
export * from './{{ tagWithoutPrefix tag }}.component.js';
|
|
export default {{ properCase tag }};
|
|
|
|
{{ properCase tag }}.define('{{ tag }}');
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'{{ tag }}': {{ properCase tag }};
|
|
}
|
|
}
|