@usecsv/vuejs 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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,6 @@
1
+ # 1.0.0 (2022-02-14)
2
+
3
+
4
+ ### Features
5
+
6
+ * usecsv plugin ([330f046](https://github.com/layercodedev/usecsv-vuejs-plugin/commit/330f046d551eee9b2caf32ded1a173cd594e5e1f))
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+
2
+ # UseCSV vuejs plugin
3
+
4
+ see [plugin docs](https://docs.usecsv.com/docs/importer/client-libraries/vuejs/getting-started)
@@ -0,0 +1,5 @@
1
+ import { PluginObject } from 'vue';
2
+ import component from "./usecsv.vue";
3
+ declare type InstallableComponent = typeof component & PluginObject<any>;
4
+ declare const _default: InstallableComponent;
5
+ export default _default;
@@ -0,0 +1,16 @@
1
+ import Vue from "vue";
2
+ declare type UserObject = {
3
+ readonly userId: string;
4
+ };
5
+ interface IUsecsv {
6
+ importerKey: string;
7
+ user?: UserObject;
8
+ metadata: Record<string, string | number> | undefined;
9
+ }
10
+ declare const _default: import("vue/types/vue").ExtendedVue<Vue, {
11
+ hasSlot: boolean;
12
+ }, {
13
+ onclick: () => void;
14
+ hasScopedSlot: () => boolean;
15
+ }, any, IUsecsv>;
16
+ export default _default;