@bobfrankston/lxlan 0.1.16 → 0.1.18
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/index.d.ts +8 -0
- package/index.js +8 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @bobfrankston/lxlan — Platform-agnostic LIFX LAN protocol core.
|
|
3
|
+
*
|
|
4
|
+
* DO NOT import this package directly in application code.
|
|
5
|
+
* Use the platform-specific wrapper instead:
|
|
6
|
+
* - Node.js: @bobfrankston/lxlan-node
|
|
7
|
+
* - Browser: @bobfrankston/lxlan-browser
|
|
8
|
+
*/
|
|
1
9
|
export * from './types.js';
|
|
2
10
|
export { LxDevice } from './device.js';
|
|
3
11
|
export { LxClient, LxClientOptions } from './client.js';
|
package/index.js
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @bobfrankston/lxlan — Platform-agnostic LIFX LAN protocol core.
|
|
3
|
+
*
|
|
4
|
+
* DO NOT import this package directly in application code.
|
|
5
|
+
* Use the platform-specific wrapper instead:
|
|
6
|
+
* - Node.js: @bobfrankston/lxlan-node
|
|
7
|
+
* - Browser: @bobfrankston/lxlan-browser
|
|
8
|
+
*/
|
|
1
9
|
export * from './types.js';
|
|
2
10
|
export { LxDevice } from './device.js';
|
|
3
11
|
export { LxClient } from './client.js';
|