@mindline/sync 1.0.6 → 1.0.7

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.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/sync.d.ts +12 -0
  3. package/.d.ts +0 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mindline/sync",
3
3
  "type": "module",
4
- "version": "1.0.6",
4
+ "version": "1.0.7",
5
5
  "description": "sync is a node.js package encapsulating javscript classes required for configuring Mindline sync service.",
6
6
  "exports": "./index.js",
7
7
  "scripts": {
package/sync.d.ts ADDED
@@ -0,0 +1,12 @@
1
+ declare module '@mindline/sync' {
2
+ //export interface SomeType {
3
+ // type definition here
4
+ //}
5
+
6
+ //sum,
7
+ export function helloNpm(): string;
8
+
9
+ //readobjects,
10
+ //User, VirtualTenant, SyncTenant, SyncConfig,
11
+ //export function readConfigs(u: User, vts: Array, sts: Array, scs: Array): boolean;
12
+ }
package/.d.ts DELETED
@@ -1 +0,0 @@
1
- declare module '@mindline/sync';