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