mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
* fix react imports in examples * move types to definition files * update changelog * update changelog
13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
import SlTooltip from './tooltip.component.js';
|
|
|
|
export * from './tooltip.component.js';
|
|
export default SlTooltip;
|
|
|
|
SlTooltip.define('sl-tooltip');
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'sl-tooltip': SlTooltip;
|
|
}
|
|
}
|