9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
|
import SlSelect from './select.component.js';
|
||
|
export * from './select.component.js';
|
||
|
export default SlSelect;
|
||
|
declare global {
|
||
|
interface HTMLElementTagNameMap {
|
||
|
'sl-select': SlSelect;
|
||
|
}
|
||
|
}
|