We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c9ce65 commit 8fb63dcCopy full SHA for 8fb63dc
src/types.ts
@@ -17,7 +17,15 @@ export enum HttpErrorsEnum {
17
ErrInvalidParameter = 422,
18
SrvErrInternalServerError = 500
19
}
20
-
+export enum RoutingNames {
21
+ login = 'login',
22
+ register = 'register',
23
+ configure = 'configure',
24
+ busses = 'busses',
25
+ specifications = 'specifications',
26
+ slaves = 'slaves',
27
+ specification = 'specification'
28
+}
29
export interface ImqttClient extends IClientOptions {
30
mqttserverurl?: string
31
tsconfig.cjs.json
@@ -5,7 +5,7 @@
5
"moduleResolution": "node",
6
"outDir": "./cjs",
7
"skipLibCheck": true,
8
- "declaration": false,
+ "declaration": true,
9
"importHelpers": true,
10
11
0 commit comments