-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
export { CollectorManager, PrepareError } from "../internal/collection/collector-manager"; | ||
export { CollectionConfiguration, SensorDelay } from "../internal/collection/collection-configuration"; | ||
import { CollectorManager as CM, PrepareError as PE } from "../internal/collection/collector-manager"; | ||
export type CollectorManager = CM; | ||
export type PrepareError = PE; | ||
|
||
import { CollectionConfiguration as CC } from "../internal/collection/collection-configuration"; | ||
export type CollectionConfiguration = CC; | ||
|
||
export { SensorDelay } from "../internal/collection/collection-configuration"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
export { Node } from "../internal/node"; | ||
export { NodeDiscoverer, NodeDiscovered } from "../internal/node/discoverer/node-discoverer"; | ||
import { NodeDiscoverer as NDR, NodeDiscovered as NDD } from "../internal/node/discoverer/node-discoverer"; | ||
export type NodeDiscoverer = NDR; | ||
export type NodeDiscovered = NDD; | ||
|
||
export { getNodeDiscoverer } from "../internal/node/discoverer"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export { getSensorCollector } from "../internal/sensors"; | ||
export { SensorType } from "../internal/sensors/sensor-type"; | ||
export { SensorType, fromString } from "../internal/sensors/sensor-type"; |