ellipsis-com 0.0.1 → 0.1.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/README.md +2 -2
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -0
- package/package.json +1 -1
- package/src/index.ts +4 -0
package/README.md
CHANGED
|
@@ -28,8 +28,8 @@ npm test
|
|
|
28
28
|
## Basic usage
|
|
29
29
|
|
|
30
30
|
```ts
|
|
31
|
-
import { ComManager } from '
|
|
32
|
-
import { ComMacro } from '
|
|
31
|
+
import { ComManager } from 'ellipsis-com'
|
|
32
|
+
import { ComMacro } from 'ellipsis-com'
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
35
|
* This demo works with the arduino-demo sketch.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ComType = exports.ComPort = exports.ComMacro = exports.ComManager = void 0;
|
|
4
|
+
var ComManager_1 = require("./ComManager");
|
|
5
|
+
Object.defineProperty(exports, "ComManager", { enumerable: true, get: function () { return ComManager_1.ComManager; } });
|
|
6
|
+
var ComMacro_1 = require("./ComMacro");
|
|
7
|
+
Object.defineProperty(exports, "ComMacro", { enumerable: true, get: function () { return ComMacro_1.ComMacro; } });
|
|
8
|
+
var ComPort_1 = require("./ComPort");
|
|
9
|
+
Object.defineProperty(exports, "ComPort", { enumerable: true, get: function () { return ComPort_1.ComPort; } });
|
|
10
|
+
var ComType_1 = require("./ComType");
|
|
11
|
+
Object.defineProperty(exports, "ComType", { enumerable: true, get: function () { return ComType_1.ComType; } });
|
|
12
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,2CAAyC;AAAhC,wGAAA,UAAU,OAAA;AACnB,uCAAqC;AAA5B,oGAAA,QAAQ,OAAA;AACjB,qCAAmC;AAA1B,kGAAA,OAAO,OAAA;AAChB,qCAAmC;AAA1B,kGAAA,OAAO,OAAA"}
|
package/package.json
CHANGED
package/src/index.ts
ADDED