vdrag-topo-utils 1.0.0

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.
@@ -0,0 +1 @@
1
+ export { default as withInstall } from "./withinstall";
@@ -0,0 +1,4 @@
1
+ import { default as l } from "./withinstall/index.js";
2
+ export {
3
+ l as withInstall
4
+ };
@@ -0,0 +1,4 @@
1
+ import type { Plugin } from "vue";
2
+ export declare type SFCWithInstall<T> = T & Plugin;
3
+ declare const _default: <T>(comp: T) => SFCWithInstall<T>;
4
+ export default _default;
@@ -0,0 +1,7 @@
1
+ const a = (n) => (n.install = (e) => {
2
+ const t = n.name || n.__name;
3
+ e.component(t, n);
4
+ }, n);
5
+ export {
6
+ a as default
7
+ };
@@ -0,0 +1 @@
1
+ export { default as withInstall } from "./withinstall";
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./withinstall/index.js");exports.withInstall=e;
@@ -0,0 +1,4 @@
1
+ import type { Plugin } from "vue";
2
+ export declare type SFCWithInstall<T> = T & Plugin;
3
+ declare const _default: <T>(comp: T) => SFCWithInstall<T>;
4
+ export default _default;
@@ -0,0 +1 @@
1
+ "use strict";const s=n=>(n.install=e=>{const t=n.name||n.__name;e.component(t,n)},n);module.exports=s;
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "vdrag-topo-utils",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "./index.ts",
6
+ "module": "./index.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "keywords": [],
11
+ "author": "",
12
+ "license": "MIT",
13
+ "scripts": {
14
+ "build": "vite build"
15
+ }
16
+ }