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