turmag-vue-components 0.0.14 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -489,3 +489,14 @@ declare const VuComponentsPlugin: Plugin_2;
|
|
|
489
489
|
export default VuComponentsPlugin;
|
|
490
490
|
|
|
491
491
|
export { }
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
declare module '@vue/runtime-core' {
|
|
495
|
+
interface IGlobalComponents {
|
|
496
|
+
UiFlex: typeof UiFlex;
|
|
497
|
+
UiText: typeof UiText;
|
|
498
|
+
UiTooltipContent: typeof UiTooltipContent;
|
|
499
|
+
UiTooltipWrapper: typeof UiTooltipWrapper;
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
|