hotstaq 0.5.3
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/.dockerignore +123 -0
- package/.eslintignore +17 -0
- package/.eslintrc.js +11 -0
- package/.vscode/launch.json +201 -0
- package/.vscode/settings.json +2 -0
- package/.vscode/tasks.json +88 -0
- package/CONTRIBUTING.md +157 -0
- package/LICENSE +21 -0
- package/README.md +128 -0
- package/bin/hotstaq +3 -0
- package/bin/hotstaq.cmd +1 -0
- package/build/src/Hot.d.ts +167 -0
- package/build/src/Hot.d.ts.map +1 -0
- package/build/src/Hot.js +365 -0
- package/build/src/Hot.js.map +1 -0
- package/build/src/HotAPI.d.ts +137 -0
- package/build/src/HotAPI.d.ts.map +1 -0
- package/build/src/HotAPI.js +353 -0
- package/build/src/HotAPI.js.map +1 -0
- package/build/src/HotAgentAPI.d.ts +22 -0
- package/build/src/HotAgentAPI.d.ts.map +1 -0
- package/build/src/HotAgentAPI.js +85 -0
- package/build/src/HotAgentAPI.js.map +1 -0
- package/build/src/HotAgentRoute.d.ts +17 -0
- package/build/src/HotAgentRoute.d.ts.map +1 -0
- package/build/src/HotAgentRoute.js +109 -0
- package/build/src/HotAgentRoute.js.map +1 -0
- package/build/src/HotBuilder.d.ts +52 -0
- package/build/src/HotBuilder.d.ts.map +1 -0
- package/build/src/HotBuilder.js +242 -0
- package/build/src/HotBuilder.js.map +1 -0
- package/build/src/HotClient.d.ts +31 -0
- package/build/src/HotClient.d.ts.map +1 -0
- package/build/src/HotClient.js +19 -0
- package/build/src/HotClient.js.map +1 -0
- package/build/src/HotComponent.d.ts +118 -0
- package/build/src/HotComponent.d.ts.map +1 -0
- package/build/src/HotComponent.js +89 -0
- package/build/src/HotComponent.js.map +1 -0
- package/build/src/HotCreator.d.ts +88 -0
- package/build/src/HotCreator.d.ts.map +1 -0
- package/build/src/HotCreator.js +445 -0
- package/build/src/HotCreator.js.map +1 -0
- package/build/src/HotDB.d.ts +69 -0
- package/build/src/HotDB.d.ts.map +1 -0
- package/build/src/HotDB.js +29 -0
- package/build/src/HotDB.js.map +1 -0
- package/build/src/HotDBConnectionInterface.d.ts +40 -0
- package/build/src/HotDBConnectionInterface.d.ts.map +1 -0
- package/build/src/HotDBConnectionInterface.js +3 -0
- package/build/src/HotDBConnectionInterface.js.map +1 -0
- package/build/src/HotFile.d.ts +134 -0
- package/build/src/HotFile.d.ts.map +1 -0
- package/build/src/HotFile.js +454 -0
- package/build/src/HotFile.js.map +1 -0
- package/build/src/HotGenerator.d.ts +80 -0
- package/build/src/HotGenerator.d.ts.map +1 -0
- package/build/src/HotGenerator.js +342 -0
- package/build/src/HotGenerator.js.map +1 -0
- package/build/src/HotHTTPServer.d.ts +162 -0
- package/build/src/HotHTTPServer.d.ts.map +1 -0
- package/build/src/HotHTTPServer.js +863 -0
- package/build/src/HotHTTPServer.js.map +1 -0
- package/build/src/HotIO.d.ts +47 -0
- package/build/src/HotIO.d.ts.map +1 -0
- package/build/src/HotIO.js +232 -0
- package/build/src/HotIO.js.map +1 -0
- package/build/src/HotLog.d.ts +60 -0
- package/build/src/HotLog.d.ts.map +1 -0
- package/build/src/HotLog.js +126 -0
- package/build/src/HotLog.js.map +1 -0
- package/build/src/HotPage.d.ts +125 -0
- package/build/src/HotPage.d.ts.map +1 -0
- package/build/src/HotPage.js +178 -0
- package/build/src/HotPage.js.map +1 -0
- package/build/src/HotRoute.d.ts +82 -0
- package/build/src/HotRoute.d.ts.map +1 -0
- package/build/src/HotRoute.js +83 -0
- package/build/src/HotRoute.js.map +1 -0
- package/build/src/HotRouteMethod.d.ts +129 -0
- package/build/src/HotRouteMethod.d.ts.map +1 -0
- package/build/src/HotRouteMethod.js +84 -0
- package/build/src/HotRouteMethod.js.map +1 -0
- package/build/src/HotServer.d.ts +152 -0
- package/build/src/HotServer.d.ts.map +1 -0
- package/build/src/HotServer.js +109 -0
- package/build/src/HotServer.js.map +1 -0
- package/build/src/HotSetAsWeb.d.ts +2 -0
- package/build/src/HotSetAsWeb.d.ts.map +1 -0
- package/build/src/HotSetAsWeb.js +5 -0
- package/build/src/HotSetAsWeb.js.map +1 -0
- package/build/src/HotStaq.d.ts +603 -0
- package/build/src/HotStaq.d.ts.map +1 -0
- package/build/src/HotStaq.js +1260 -0
- package/build/src/HotStaq.js.map +1 -0
- package/build/src/HotStaqWeb.d.ts +18 -0
- package/build/src/HotStaqWeb.d.ts.map +1 -0
- package/build/src/HotStaqWeb.js +44 -0
- package/build/src/HotStaqWeb.js.map +1 -0
- package/build/src/HotTestDriver.d.ts +63 -0
- package/build/src/HotTestDriver.d.ts.map +1 -0
- package/build/src/HotTestDriver.js +187 -0
- package/build/src/HotTestDriver.js.map +1 -0
- package/build/src/HotTestElement.d.ts +71 -0
- package/build/src/HotTestElement.d.ts.map +1 -0
- package/build/src/HotTestElement.js +37 -0
- package/build/src/HotTestElement.js.map +1 -0
- package/build/src/HotTestMap.d.ts +83 -0
- package/build/src/HotTestMap.d.ts.map +1 -0
- package/build/src/HotTestMap.js +58 -0
- package/build/src/HotTestMap.js.map +1 -0
- package/build/src/HotTestSeleniumDriver.d.ts +86 -0
- package/build/src/HotTestSeleniumDriver.d.ts.map +1 -0
- package/build/src/HotTestSeleniumDriver.js +400 -0
- package/build/src/HotTestSeleniumDriver.js.map +1 -0
- package/build/src/HotTester.d.ts +188 -0
- package/build/src/HotTester.d.ts.map +1 -0
- package/build/src/HotTester.js +622 -0
- package/build/src/HotTester.js.map +1 -0
- package/build/src/HotTesterAPI.d.ts +15 -0
- package/build/src/HotTesterAPI.d.ts.map +1 -0
- package/build/src/HotTesterAPI.js +161 -0
- package/build/src/HotTesterAPI.js.map +1 -0
- package/build/src/HotTesterMocha.d.ts +50 -0
- package/build/src/HotTesterMocha.d.ts.map +1 -0
- package/build/src/HotTesterMocha.js +205 -0
- package/build/src/HotTesterMocha.js.map +1 -0
- package/build/src/HotTesterMochaSelenium.d.ts +70 -0
- package/build/src/HotTesterMochaSelenium.d.ts.map +1 -0
- package/build/src/HotTesterMochaSelenium.js +257 -0
- package/build/src/HotTesterMochaSelenium.js.map +1 -0
- package/build/src/HotTesterServer.d.ts +114 -0
- package/build/src/HotTesterServer.d.ts.map +1 -0
- package/build/src/HotTesterServer.js +575 -0
- package/build/src/HotTesterServer.js.map +1 -0
- package/build/src/api copy.d.ts +2 -0
- package/build/src/api copy.d.ts.map +1 -0
- package/build/src/api copy.js +153 -0
- package/build/src/api copy.js.map +1 -0
- package/build/src/api-web.d.ts +2 -0
- package/build/src/api-web.d.ts.map +1 -0
- package/build/src/api-web.js +45 -0
- package/build/src/api-web.js.map +1 -0
- package/build/src/api.d.ts +33 -0
- package/build/src/api.d.ts.map +1 -0
- package/build/src/api.js +78 -0
- package/build/src/api.js.map +1 -0
- package/build/src/cli.d.ts +2 -0
- package/build/src/cli.d.ts.map +1 -0
- package/build/src/cli.js +1040 -0
- package/build/src/cli.js.map +1 -0
- package/build/src/schemas/HotDBInflux.d.ts +63 -0
- package/build/src/schemas/HotDBInflux.d.ts.map +1 -0
- package/build/src/schemas/HotDBInflux.js +239 -0
- package/build/src/schemas/HotDBInflux.js.map +1 -0
- package/build/src/schemas/HotDBMigration.d.ts +19 -0
- package/build/src/schemas/HotDBMigration.d.ts.map +1 -0
- package/build/src/schemas/HotDBMigration.js +15 -0
- package/build/src/schemas/HotDBMigration.js.map +1 -0
- package/build/src/schemas/HotDBMySQL.d.ts +65 -0
- package/build/src/schemas/HotDBMySQL.d.ts.map +1 -0
- package/build/src/schemas/HotDBMySQL.js +387 -0
- package/build/src/schemas/HotDBMySQL.js.map +1 -0
- package/build/src/schemas/HotDBSchema.d.ts +15 -0
- package/build/src/schemas/HotDBSchema.d.ts.map +1 -0
- package/build/src/schemas/HotDBSchema.js +19 -0
- package/build/src/schemas/HotDBSchema.js.map +1 -0
- package/build/src/schemas/influx/InfluxSchema.d.ts +14 -0
- package/build/src/schemas/influx/InfluxSchema.d.ts.map +1 -0
- package/build/src/schemas/influx/InfluxSchema.js +33 -0
- package/build/src/schemas/influx/InfluxSchema.js.map +1 -0
- package/build/src/schemas/mysql/MySQLSchema.d.ts +39 -0
- package/build/src/schemas/mysql/MySQLSchema.d.ts.map +1 -0
- package/build/src/schemas/mysql/MySQLSchema.js +151 -0
- package/build/src/schemas/mysql/MySQLSchema.js.map +1 -0
- package/build/src/schemas/mysql/MySQLSchemaField.d.ts +168 -0
- package/build/src/schemas/mysql/MySQLSchemaField.d.ts.map +1 -0
- package/build/src/schemas/mysql/MySQLSchemaField.js +260 -0
- package/build/src/schemas/mysql/MySQLSchemaField.js.map +1 -0
- package/build/src/schemas/mysql/MySQLSchemaTable.d.ts +49 -0
- package/build/src/schemas/mysql/MySQLSchemaTable.d.ts.map +1 -0
- package/build/src/schemas/mysql/MySQLSchemaTable.js +310 -0
- package/build/src/schemas/mysql/MySQLSchemaTable.js.map +1 -0
- package/build-web/HotStaq.js +2 -0
- package/build-web/HotStaq.min.js +119 -0
- package/build-web/HotStaqTests_HelloWorldAPI.js +133 -0
- package/builder/docker/Dockerfile.linux.gen +42 -0
- package/builder/docker/README.md +36 -0
- package/builder/docker/app/start.sh +8 -0
- package/builder/docker/dockerignore +3 -0
- package/builder/docker/scripts/build.bat +11 -0
- package/builder/docker/scripts/build.sh +11 -0
- package/builder/docker/scripts/start-app.bat +7 -0
- package/builder/docker/scripts/start-app.sh +7 -0
- package/builder/docker/scripts/stop-app.bat +5 -0
- package/builder/docker/scripts/stop-app.sh +5 -0
- package/builder/docker-compose/docker-compose.gen.yaml +41 -0
- package/builder/docker-compose/env-skeleton +4 -0
- package/creator/project/.vscode/launch.json +59 -0
- package/creator/project/README.md +20 -0
- package/creator/project/gitignore +118 -0
- package/creator/project/npmignore +118 -0
- package/creator/public/api-test.hott +28 -0
- package/creator/public/index.hott +12 -0
- package/creator/ts/src/AppAPI.ts +30 -0
- package/creator/ts/src/HelloWorld.ts +39 -0
- package/creator/ts/src/WebExport.ts +7 -0
- package/creator/ts/tsconfig-web.json +73 -0
- package/creator/ts/tsconfig.json +73 -0
- package/creator/ts/webpack-api.config.js +57 -0
- package/dbstart.sh +19 -0
- package/dbstop.sh +4 -0
- package/docs/.nojekyll +1 -0
- package/docs/README.md +130 -0
- package/docs/classes/Hot.md +477 -0
- package/docs/classes/HotAPI.md +369 -0
- package/docs/classes/HotClient.md +95 -0
- package/docs/classes/HotComponent.md +279 -0
- package/docs/classes/HotDB.md +247 -0
- package/docs/classes/HotDBInflux.md +404 -0
- package/docs/classes/HotDBMigration.md +80 -0
- package/docs/classes/HotDBMySQL.md +310 -0
- package/docs/classes/HotDBSchema.md +51 -0
- package/docs/classes/HotFile.md +353 -0
- package/docs/classes/HotHTTPServer.md +700 -0
- package/docs/classes/HotLog.md +162 -0
- package/docs/classes/HotPage.md +357 -0
- package/docs/classes/HotRoute.md +312 -0
- package/docs/classes/HotRouteMethod.md +271 -0
- package/docs/classes/HotServer.md +311 -0
- package/docs/classes/HotStaq.md +1155 -0
- package/docs/classes/HotTestDestination.md +58 -0
- package/docs/classes/HotTestDriver.md +332 -0
- package/docs/classes/HotTestElement.md +88 -0
- package/docs/classes/HotTestElementOptions.md +71 -0
- package/docs/classes/HotTestMap.md +92 -0
- package/docs/classes/HotTestSeleniumDriver.md +542 -0
- package/docs/classes/HotTester.md +653 -0
- package/docs/classes/HotTesterAPI.md +493 -0
- package/docs/classes/HotTesterMocha.md +843 -0
- package/docs/classes/HotTesterMochaSelenium.md +896 -0
- package/docs/classes/HotTesterServer.md +633 -0
- package/docs/classes/InfluxSchema.md +74 -0
- package/docs/classes/MySQLSchema.md +199 -0
- package/docs/classes/MySQLSchemaField.md +330 -0
- package/docs/classes/MySQLSchemaTable.md +176 -0
- package/docs/enums/ConnectionStatus.md +43 -0
- package/docs/enums/DeveloperMode.md +38 -0
- package/docs/enums/EventExecutionType.md +43 -0
- package/docs/enums/HTTPMethod.md +32 -0
- package/docs/enums/HotDBGenerationType.md +30 -0
- package/docs/enums/HotLogLevel.md +88 -0
- package/docs/interfaces/HotDBConnectionInterface.md +116 -0
- package/docs/interfaces/HotDestination.md +62 -0
- package/docs/interfaces/HotSite.md +187 -0
- package/docs/interfaces/HotSiteMapPath.md +37 -0
- package/docs/interfaces/HotSiteRoute.md +79 -0
- package/docs/interfaces/HotStartOptions.md +115 -0
- package/docs/interfaces/HotTestPage.md +44 -0
- package/docs/interfaces/HotTestStop.md +62 -0
- package/docs/interfaces/IHotComponent.md +135 -0
- package/docs/interfaces/IHotStaq.md +118 -0
- package/docs/interfaces/IHotTestElement.md +54 -0
- package/docs/interfaces/IHotTestElementOptions.md +43 -0
- package/docs/interfaces/MySQLResults.md +43 -0
- package/docs/interfaces/MySQLSchemaFieldResult.md +75 -0
- package/docs/modules.md +182 -0
- package/package.json +65 -0
- package/selenium-start.sh +7 -0
- package/selenium-stop.sh +3 -0
- package/src/Hot.ts +319 -0
- package/src/HotAPI.ts +386 -0
- package/src/HotAgentAPI.ts +43 -0
- package/src/HotAgentRoute.ts +44 -0
- package/src/HotBuilder.ts +221 -0
- package/src/HotClient.ts +40 -0
- package/src/HotComponent.ts +158 -0
- package/src/HotCreator.ts +470 -0
- package/src/HotDB.ts +79 -0
- package/src/HotDBConnectionInterface.ts +40 -0
- package/src/HotFile.ts +617 -0
- package/src/HotGenerator.ts +446 -0
- package/src/HotHTTPServer.ts +954 -0
- package/src/HotIO.ts +160 -0
- package/src/HotLog.ts +158 -0
- package/src/HotPage.ts +206 -0
- package/src/HotRoute.ts +137 -0
- package/src/HotRouteMethod.ts +216 -0
- package/src/HotServer.ts +211 -0
- package/src/HotSetAsWeb.ts +3 -0
- package/src/HotStaq.ts +1881 -0
- package/src/HotTestDriver.ts +171 -0
- package/src/HotTestElement.ts +97 -0
- package/src/HotTestMap.ts +130 -0
- package/src/HotTestSeleniumDriver.ts +381 -0
- package/src/HotTester.ts +696 -0
- package/src/HotTesterAPI.ts +126 -0
- package/src/HotTesterMocha.ts +133 -0
- package/src/HotTesterMochaSelenium.ts +189 -0
- package/src/HotTesterServer.ts +551 -0
- package/src/api-web.ts +48 -0
- package/src/api.ts +103 -0
- package/src/cli.ts +1225 -0
- package/src/schemas/HotDBInflux.ts +211 -0
- package/src/schemas/HotDBMigration.ts +24 -0
- package/src/schemas/HotDBMySQL.ts +312 -0
- package/src/schemas/HotDBSchema.ts +21 -0
- package/src/schemas/influx/InfluxSchema.ts +19 -0
- package/src/schemas/mysql/MySQLSchema.ts +90 -0
- package/src/schemas/mysql/MySQLSchemaField.ts +408 -0
- package/src/schemas/mysql/MySQLSchemaTable.ts +353 -0
- package/temp/HotStaqWeb.ts +59 -0
- package/tsconfig-generator.json +17 -0
- package/tsconfig-web.json +74 -0
- package/tsconfig.json +73 -0
- package/webpack.config.generator.js +41 -0
- package/webpack.config.js +53 -0
- package/webpack.config.tests.js +56 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / ConnectionStatus
|
|
2
|
+
|
|
3
|
+
# Enumeration: ConnectionStatus
|
|
4
|
+
|
|
5
|
+
The database connection status.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Enumeration members
|
|
10
|
+
|
|
11
|
+
- [Connected](ConnectionStatus.md#connected)
|
|
12
|
+
- [Connecting](ConnectionStatus.md#connecting)
|
|
13
|
+
- [Disconnected](ConnectionStatus.md#disconnected)
|
|
14
|
+
|
|
15
|
+
## Enumeration members
|
|
16
|
+
|
|
17
|
+
### Connected
|
|
18
|
+
|
|
19
|
+
• **Connected** = `2`
|
|
20
|
+
|
|
21
|
+
#### Defined in
|
|
22
|
+
|
|
23
|
+
[HotDB.ts:11](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDB.ts#L11)
|
|
24
|
+
|
|
25
|
+
___
|
|
26
|
+
|
|
27
|
+
### Connecting
|
|
28
|
+
|
|
29
|
+
• **Connecting** = `1`
|
|
30
|
+
|
|
31
|
+
#### Defined in
|
|
32
|
+
|
|
33
|
+
[HotDB.ts:10](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDB.ts#L10)
|
|
34
|
+
|
|
35
|
+
___
|
|
36
|
+
|
|
37
|
+
### Disconnected
|
|
38
|
+
|
|
39
|
+
• **Disconnected** = `0`
|
|
40
|
+
|
|
41
|
+
#### Defined in
|
|
42
|
+
|
|
43
|
+
[HotDB.ts:9](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDB.ts#L9)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / DeveloperMode
|
|
2
|
+
|
|
3
|
+
# Enumeration: DeveloperMode
|
|
4
|
+
|
|
5
|
+
The available developer modes.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Enumeration members
|
|
10
|
+
|
|
11
|
+
- [Development](DeveloperMode.md#development)
|
|
12
|
+
- [Production](DeveloperMode.md#production)
|
|
13
|
+
|
|
14
|
+
## Enumeration members
|
|
15
|
+
|
|
16
|
+
### Development
|
|
17
|
+
|
|
18
|
+
• **Development** = `1`
|
|
19
|
+
|
|
20
|
+
For use during development/debugging. All test data will
|
|
21
|
+
be collected and executed if necessary.
|
|
22
|
+
|
|
23
|
+
#### Defined in
|
|
24
|
+
|
|
25
|
+
[Hot.ts:24](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/Hot.ts#L24)
|
|
26
|
+
|
|
27
|
+
___
|
|
28
|
+
|
|
29
|
+
### Production
|
|
30
|
+
|
|
31
|
+
• **Production** = `0`
|
|
32
|
+
|
|
33
|
+
The default developer mode. No tests will be executed and
|
|
34
|
+
any test related data will be ignored.
|
|
35
|
+
|
|
36
|
+
#### Defined in
|
|
37
|
+
|
|
38
|
+
[Hot.ts:19](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/Hot.ts#L19)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / EventExecutionType
|
|
2
|
+
|
|
3
|
+
# Enumeration: EventExecutionType
|
|
4
|
+
|
|
5
|
+
The type of object to use during event executions.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Enumeration members
|
|
10
|
+
|
|
11
|
+
- [HotAPI](EventExecutionType.md#hotapi)
|
|
12
|
+
- [HotMethod](EventExecutionType.md#hotmethod)
|
|
13
|
+
- [HotRoute](EventExecutionType.md#hotroute)
|
|
14
|
+
|
|
15
|
+
## Enumeration members
|
|
16
|
+
|
|
17
|
+
### HotAPI
|
|
18
|
+
|
|
19
|
+
• **HotAPI** = `2`
|
|
20
|
+
|
|
21
|
+
#### Defined in
|
|
22
|
+
|
|
23
|
+
[HotAPI.ts:26](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotAPI.ts#L26)
|
|
24
|
+
|
|
25
|
+
___
|
|
26
|
+
|
|
27
|
+
### HotMethod
|
|
28
|
+
|
|
29
|
+
• **HotMethod** = `1`
|
|
30
|
+
|
|
31
|
+
#### Defined in
|
|
32
|
+
|
|
33
|
+
[HotAPI.ts:25](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotAPI.ts#L25)
|
|
34
|
+
|
|
35
|
+
___
|
|
36
|
+
|
|
37
|
+
### HotRoute
|
|
38
|
+
|
|
39
|
+
• **HotRoute** = `0`
|
|
40
|
+
|
|
41
|
+
#### Defined in
|
|
42
|
+
|
|
43
|
+
[HotAPI.ts:24](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotAPI.ts#L24)
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HTTPMethod
|
|
2
|
+
|
|
3
|
+
# Enumeration: HTTPMethod
|
|
4
|
+
|
|
5
|
+
Available HTTP methods.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Enumeration members
|
|
10
|
+
|
|
11
|
+
- [GET](HTTPMethod.md#get)
|
|
12
|
+
- [POST](HTTPMethod.md#post)
|
|
13
|
+
|
|
14
|
+
## Enumeration members
|
|
15
|
+
|
|
16
|
+
### GET
|
|
17
|
+
|
|
18
|
+
• **GET** = `"get"`
|
|
19
|
+
|
|
20
|
+
#### Defined in
|
|
21
|
+
|
|
22
|
+
[HotRouteMethod.ts:11](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotRouteMethod.ts#L11)
|
|
23
|
+
|
|
24
|
+
___
|
|
25
|
+
|
|
26
|
+
### POST
|
|
27
|
+
|
|
28
|
+
• **POST** = `"post"`
|
|
29
|
+
|
|
30
|
+
#### Defined in
|
|
31
|
+
|
|
32
|
+
[HotRouteMethod.ts:12](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotRouteMethod.ts#L12)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotDBGenerationType
|
|
2
|
+
|
|
3
|
+
# Enumeration: HotDBGenerationType
|
|
4
|
+
|
|
5
|
+
## Table of contents
|
|
6
|
+
|
|
7
|
+
### Enumeration members
|
|
8
|
+
|
|
9
|
+
- [Create](HotDBGenerationType.md#create)
|
|
10
|
+
- [Modify](HotDBGenerationType.md#modify)
|
|
11
|
+
|
|
12
|
+
## Enumeration members
|
|
13
|
+
|
|
14
|
+
### Create
|
|
15
|
+
|
|
16
|
+
• **Create** = `0`
|
|
17
|
+
|
|
18
|
+
#### Defined in
|
|
19
|
+
|
|
20
|
+
[schemas/HotDBSchema.ts:3](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/schemas/HotDBSchema.ts#L3)
|
|
21
|
+
|
|
22
|
+
___
|
|
23
|
+
|
|
24
|
+
### Modify
|
|
25
|
+
|
|
26
|
+
• **Modify** = `1`
|
|
27
|
+
|
|
28
|
+
#### Defined in
|
|
29
|
+
|
|
30
|
+
[schemas/HotDBSchema.ts:4](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/schemas/HotDBSchema.ts#L4)
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotLogLevel
|
|
2
|
+
|
|
3
|
+
# Enumeration: HotLogLevel
|
|
4
|
+
|
|
5
|
+
The logging level.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Enumeration members
|
|
10
|
+
|
|
11
|
+
- [All](HotLogLevel.md#all)
|
|
12
|
+
- [Error](HotLogLevel.md#error)
|
|
13
|
+
- [Info](HotLogLevel.md#info)
|
|
14
|
+
- [None](HotLogLevel.md#none)
|
|
15
|
+
- [Verbose](HotLogLevel.md#verbose)
|
|
16
|
+
- [Warning](HotLogLevel.md#warning)
|
|
17
|
+
|
|
18
|
+
## Enumeration members
|
|
19
|
+
|
|
20
|
+
### All
|
|
21
|
+
|
|
22
|
+
• **All** = `4`
|
|
23
|
+
|
|
24
|
+
Prints all messages, except verbose.
|
|
25
|
+
|
|
26
|
+
#### Defined in
|
|
27
|
+
|
|
28
|
+
[HotLog.ts:25](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotLog.ts#L25)
|
|
29
|
+
|
|
30
|
+
___
|
|
31
|
+
|
|
32
|
+
### Error
|
|
33
|
+
|
|
34
|
+
• **Error** = `2`
|
|
35
|
+
|
|
36
|
+
Prints only error messages.
|
|
37
|
+
|
|
38
|
+
#### Defined in
|
|
39
|
+
|
|
40
|
+
[HotLog.ts:17](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotLog.ts#L17)
|
|
41
|
+
|
|
42
|
+
___
|
|
43
|
+
|
|
44
|
+
### Info
|
|
45
|
+
|
|
46
|
+
• **Info** = `0`
|
|
47
|
+
|
|
48
|
+
Prints only info messages.
|
|
49
|
+
|
|
50
|
+
#### Defined in
|
|
51
|
+
|
|
52
|
+
[HotLog.ts:9](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotLog.ts#L9)
|
|
53
|
+
|
|
54
|
+
___
|
|
55
|
+
|
|
56
|
+
### None
|
|
57
|
+
|
|
58
|
+
• **None** = `5`
|
|
59
|
+
|
|
60
|
+
Doesn't print any message.
|
|
61
|
+
|
|
62
|
+
#### Defined in
|
|
63
|
+
|
|
64
|
+
[HotLog.ts:29](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotLog.ts#L29)
|
|
65
|
+
|
|
66
|
+
___
|
|
67
|
+
|
|
68
|
+
### Verbose
|
|
69
|
+
|
|
70
|
+
• **Verbose** = `3`
|
|
71
|
+
|
|
72
|
+
Prints all messages.
|
|
73
|
+
|
|
74
|
+
#### Defined in
|
|
75
|
+
|
|
76
|
+
[HotLog.ts:21](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotLog.ts#L21)
|
|
77
|
+
|
|
78
|
+
___
|
|
79
|
+
|
|
80
|
+
### Warning
|
|
81
|
+
|
|
82
|
+
• **Warning** = `1`
|
|
83
|
+
|
|
84
|
+
Prints only warning messages.
|
|
85
|
+
|
|
86
|
+
#### Defined in
|
|
87
|
+
|
|
88
|
+
[HotLog.ts:13](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotLog.ts#L13)
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotDBConnectionInterface
|
|
2
|
+
|
|
3
|
+
# Interface: HotDBConnectionInterface
|
|
4
|
+
|
|
5
|
+
The database connection info.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Properties
|
|
10
|
+
|
|
11
|
+
- [database](HotDBConnectionInterface.md#database)
|
|
12
|
+
- [org](HotDBConnectionInterface.md#org)
|
|
13
|
+
- [password](HotDBConnectionInterface.md#password)
|
|
14
|
+
- [port](HotDBConnectionInterface.md#port)
|
|
15
|
+
- [server](HotDBConnectionInterface.md#server)
|
|
16
|
+
- [token](HotDBConnectionInterface.md#token)
|
|
17
|
+
- [type](HotDBConnectionInterface.md#type)
|
|
18
|
+
- [username](HotDBConnectionInterface.md#username)
|
|
19
|
+
|
|
20
|
+
## Properties
|
|
21
|
+
|
|
22
|
+
### database
|
|
23
|
+
|
|
24
|
+
• `Optional` **database**: `string`
|
|
25
|
+
|
|
26
|
+
The database to use.
|
|
27
|
+
|
|
28
|
+
#### Defined in
|
|
29
|
+
|
|
30
|
+
[HotDBConnectionInterface.ts:39](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDBConnectionInterface.ts#L39)
|
|
31
|
+
|
|
32
|
+
___
|
|
33
|
+
|
|
34
|
+
### org
|
|
35
|
+
|
|
36
|
+
• `Optional` **org**: `string`
|
|
37
|
+
|
|
38
|
+
The org to use.
|
|
39
|
+
|
|
40
|
+
#### Defined in
|
|
41
|
+
|
|
42
|
+
[HotDBConnectionInterface.ts:35](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDBConnectionInterface.ts#L35)
|
|
43
|
+
|
|
44
|
+
___
|
|
45
|
+
|
|
46
|
+
### password
|
|
47
|
+
|
|
48
|
+
• `Optional` **password**: `string`
|
|
49
|
+
|
|
50
|
+
The password to use.
|
|
51
|
+
|
|
52
|
+
#### Defined in
|
|
53
|
+
|
|
54
|
+
[HotDBConnectionInterface.ts:27](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDBConnectionInterface.ts#L27)
|
|
55
|
+
|
|
56
|
+
___
|
|
57
|
+
|
|
58
|
+
### port
|
|
59
|
+
|
|
60
|
+
• `Optional` **port**: `number`
|
|
61
|
+
|
|
62
|
+
The server's port.
|
|
63
|
+
|
|
64
|
+
#### Defined in
|
|
65
|
+
|
|
66
|
+
[HotDBConnectionInterface.ts:19](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDBConnectionInterface.ts#L19)
|
|
67
|
+
|
|
68
|
+
___
|
|
69
|
+
|
|
70
|
+
### server
|
|
71
|
+
|
|
72
|
+
• `Optional` **server**: `string`
|
|
73
|
+
|
|
74
|
+
The server's address.
|
|
75
|
+
|
|
76
|
+
#### Defined in
|
|
77
|
+
|
|
78
|
+
[HotDBConnectionInterface.ts:15](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDBConnectionInterface.ts#L15)
|
|
79
|
+
|
|
80
|
+
___
|
|
81
|
+
|
|
82
|
+
### token
|
|
83
|
+
|
|
84
|
+
• `Optional` **token**: `string`
|
|
85
|
+
|
|
86
|
+
The token to use.
|
|
87
|
+
|
|
88
|
+
#### Defined in
|
|
89
|
+
|
|
90
|
+
[HotDBConnectionInterface.ts:31](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDBConnectionInterface.ts#L31)
|
|
91
|
+
|
|
92
|
+
___
|
|
93
|
+
|
|
94
|
+
### type
|
|
95
|
+
|
|
96
|
+
• `Optional` **type**: `string`
|
|
97
|
+
|
|
98
|
+
The type of database. Can be:
|
|
99
|
+
* mysql
|
|
100
|
+
* influx
|
|
101
|
+
|
|
102
|
+
#### Defined in
|
|
103
|
+
|
|
104
|
+
[HotDBConnectionInterface.ts:11](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDBConnectionInterface.ts#L11)
|
|
105
|
+
|
|
106
|
+
___
|
|
107
|
+
|
|
108
|
+
### username
|
|
109
|
+
|
|
110
|
+
• `Optional` **username**: `string`
|
|
111
|
+
|
|
112
|
+
The username to use to connect.
|
|
113
|
+
|
|
114
|
+
#### Defined in
|
|
115
|
+
|
|
116
|
+
[HotDBConnectionInterface.ts:23](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotDBConnectionInterface.ts#L23)
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotDestination
|
|
2
|
+
|
|
3
|
+
# Interface: HotDestination
|
|
4
|
+
|
|
5
|
+
The destination for a test to take.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Properties
|
|
10
|
+
|
|
11
|
+
- [api](HotDestination.md#api)
|
|
12
|
+
- [mapName](HotDestination.md#mapname)
|
|
13
|
+
- [page](HotDestination.md#page)
|
|
14
|
+
- [paths](HotDestination.md#paths)
|
|
15
|
+
|
|
16
|
+
## Properties
|
|
17
|
+
|
|
18
|
+
### api
|
|
19
|
+
|
|
20
|
+
• **api**: `string`
|
|
21
|
+
|
|
22
|
+
The API route to start using.
|
|
23
|
+
|
|
24
|
+
#### Defined in
|
|
25
|
+
|
|
26
|
+
[HotTester.ts:55](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotTester.ts#L55)
|
|
27
|
+
|
|
28
|
+
___
|
|
29
|
+
|
|
30
|
+
### mapName
|
|
31
|
+
|
|
32
|
+
• **mapName**: `string`
|
|
33
|
+
|
|
34
|
+
The name of the map.
|
|
35
|
+
|
|
36
|
+
#### Defined in
|
|
37
|
+
|
|
38
|
+
[HotTester.ts:47](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotTester.ts#L47)
|
|
39
|
+
|
|
40
|
+
___
|
|
41
|
+
|
|
42
|
+
### page
|
|
43
|
+
|
|
44
|
+
• **page**: `string`
|
|
45
|
+
|
|
46
|
+
The page to start at.
|
|
47
|
+
|
|
48
|
+
#### Defined in
|
|
49
|
+
|
|
50
|
+
[HotTester.ts:51](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotTester.ts#L51)
|
|
51
|
+
|
|
52
|
+
___
|
|
53
|
+
|
|
54
|
+
### paths
|
|
55
|
+
|
|
56
|
+
• **paths**: [`HotTestStop`](HotTestStop.md)[]
|
|
57
|
+
|
|
58
|
+
The paths to take on the page.
|
|
59
|
+
|
|
60
|
+
#### Defined in
|
|
61
|
+
|
|
62
|
+
[HotTester.ts:59](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotTester.ts#L59)
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotSite
|
|
2
|
+
|
|
3
|
+
# Interface: HotSite
|
|
4
|
+
|
|
5
|
+
A HotSite to load. This SHOULD NOT contain any private secret keys, passwords,
|
|
6
|
+
or database connection information related to the server. As such, future
|
|
7
|
+
versions of the HotSite interface should not contain any database related
|
|
8
|
+
connection info.
|
|
9
|
+
|
|
10
|
+
## Table of contents
|
|
11
|
+
|
|
12
|
+
### Properties
|
|
13
|
+
|
|
14
|
+
- [apis](HotSite.md#apis)
|
|
15
|
+
- [components](HotSite.md#components)
|
|
16
|
+
- [files](HotSite.md#files)
|
|
17
|
+
- [hotsitePath](HotSite.md#hotsitepath)
|
|
18
|
+
- [name](HotSite.md#name)
|
|
19
|
+
- [publicSecrets](HotSite.md#publicsecrets)
|
|
20
|
+
- [routes](HotSite.md#routes)
|
|
21
|
+
- [server](HotSite.md#server)
|
|
22
|
+
- [testing](HotSite.md#testing)
|
|
23
|
+
|
|
24
|
+
## Properties
|
|
25
|
+
|
|
26
|
+
### apis
|
|
27
|
+
|
|
28
|
+
• `Optional` **apis**: `Object`
|
|
29
|
+
|
|
30
|
+
The available APIs on the server. The server must already have these
|
|
31
|
+
loaded.
|
|
32
|
+
|
|
33
|
+
#### Index signature
|
|
34
|
+
|
|
35
|
+
▪ [name: `string`]: { `apiName?`: `string` ; `filepath?`: `string` ; `jsapi?`: `string` ; `libraryName?`: `string` ; `map?`: `string`[] ; `port?`: `number` ; `url?`: `string` }
|
|
36
|
+
|
|
37
|
+
#### Defined in
|
|
38
|
+
|
|
39
|
+
[HotStaq.ts:221](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L221)
|
|
40
|
+
|
|
41
|
+
___
|
|
42
|
+
|
|
43
|
+
### components
|
|
44
|
+
|
|
45
|
+
• `Optional` **components**: `Object`
|
|
46
|
+
|
|
47
|
+
The components to load and register.
|
|
48
|
+
|
|
49
|
+
#### Index signature
|
|
50
|
+
|
|
51
|
+
▪ [name: `string`]: { `url`: `string` }
|
|
52
|
+
|
|
53
|
+
#### Defined in
|
|
54
|
+
|
|
55
|
+
[HotStaq.ts:272](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L272)
|
|
56
|
+
|
|
57
|
+
___
|
|
58
|
+
|
|
59
|
+
### files
|
|
60
|
+
|
|
61
|
+
• `Optional` **files**: `Object`
|
|
62
|
+
|
|
63
|
+
The files to load and save in memory.
|
|
64
|
+
|
|
65
|
+
#### Index signature
|
|
66
|
+
|
|
67
|
+
▪ [name: `string`]: { `url`: `string` }
|
|
68
|
+
|
|
69
|
+
#### Defined in
|
|
70
|
+
|
|
71
|
+
[HotStaq.ts:283](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L283)
|
|
72
|
+
|
|
73
|
+
___
|
|
74
|
+
|
|
75
|
+
### hotsitePath
|
|
76
|
+
|
|
77
|
+
• `Optional` **hotsitePath**: `string`
|
|
78
|
+
|
|
79
|
+
The path to the current HotSite. This is filled in during parsing.
|
|
80
|
+
|
|
81
|
+
#### Defined in
|
|
82
|
+
|
|
83
|
+
[HotStaq.ts:88](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L88)
|
|
84
|
+
|
|
85
|
+
___
|
|
86
|
+
|
|
87
|
+
### name
|
|
88
|
+
|
|
89
|
+
• **name**: `string`
|
|
90
|
+
|
|
91
|
+
The name of this HotSite.
|
|
92
|
+
|
|
93
|
+
#### Defined in
|
|
94
|
+
|
|
95
|
+
[HotStaq.ts:84](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L84)
|
|
96
|
+
|
|
97
|
+
___
|
|
98
|
+
|
|
99
|
+
### publicSecrets
|
|
100
|
+
|
|
101
|
+
• `Optional` **publicSecrets**: `Object`
|
|
102
|
+
|
|
103
|
+
Secrets that can be publicly embedded into the page.
|
|
104
|
+
|
|
105
|
+
#### Index signature
|
|
106
|
+
|
|
107
|
+
▪ [name: `string`]: `string` \| { `env?`: `string` ; `passSecretFromAPI?`: `string` }
|
|
108
|
+
|
|
109
|
+
#### Defined in
|
|
110
|
+
|
|
111
|
+
[HotStaq.ts:256](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L256)
|
|
112
|
+
|
|
113
|
+
___
|
|
114
|
+
|
|
115
|
+
### routes
|
|
116
|
+
|
|
117
|
+
• `Optional` **routes**: `Object`
|
|
118
|
+
|
|
119
|
+
The routes to load.
|
|
120
|
+
|
|
121
|
+
#### Index signature
|
|
122
|
+
|
|
123
|
+
▪ [routeName: `string`]: [`HotSiteRoute`](HotSiteRoute.md)
|
|
124
|
+
|
|
125
|
+
#### Defined in
|
|
126
|
+
|
|
127
|
+
[HotStaq.ts:214](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L214)
|
|
128
|
+
|
|
129
|
+
___
|
|
130
|
+
|
|
131
|
+
### server
|
|
132
|
+
|
|
133
|
+
• `Optional` **server**: `Object`
|
|
134
|
+
|
|
135
|
+
Additional web server configuration.
|
|
136
|
+
|
|
137
|
+
#### Type declaration
|
|
138
|
+
|
|
139
|
+
| Name | Type | Description |
|
|
140
|
+
| :------ | :------ | :------ |
|
|
141
|
+
| `globalApi?` | `string` | The name of the API to interface with across all pages. |
|
|
142
|
+
| `jsSrcPath?` | `string` | The JavaScript source path. |
|
|
143
|
+
| `name?` | `string` | The default name for a served Hott file. |
|
|
144
|
+
| `ports?` | `Object` | The ports to use. |
|
|
145
|
+
| `ports.http?` | `number` | The HTTP port to serve on. |
|
|
146
|
+
| `ports.https?` | `number` | The HTTPS port to serve on. |
|
|
147
|
+
| `ports.redirectHTTPtoHTTPS?` | `boolean` | If set to true, this will redirect from HTTP to HTTPS. |
|
|
148
|
+
| `serveDirectories?` | { `localPath`: `string` ; `route`: `string` }[] | The list of directory to serve to the client from the server. |
|
|
149
|
+
| `serveHottFiles?` | `boolean` | Serve hott files when requested. |
|
|
150
|
+
| `url?` | `string` | The base url for the server. |
|
|
151
|
+
|
|
152
|
+
#### Defined in
|
|
153
|
+
|
|
154
|
+
[HotStaq.ts:92](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L92)
|
|
155
|
+
|
|
156
|
+
___
|
|
157
|
+
|
|
158
|
+
### testing
|
|
159
|
+
|
|
160
|
+
• `Optional` **testing**: `Object`
|
|
161
|
+
|
|
162
|
+
Testing related functionality.
|
|
163
|
+
|
|
164
|
+
#### Type declaration
|
|
165
|
+
|
|
166
|
+
| Name | Type |
|
|
167
|
+
| :------ | :------ |
|
|
168
|
+
| `api?` | `Object` |
|
|
169
|
+
| `api.createNewTester?` | `boolean` |
|
|
170
|
+
| `api.driver?` | `string` |
|
|
171
|
+
| `api.launchpadUrl?` | `string` |
|
|
172
|
+
| `api.maps?` | `string`[] |
|
|
173
|
+
| `api.tester?` | `string` |
|
|
174
|
+
| `api.testerAPIUrl?` | `string` |
|
|
175
|
+
| `api.testerName?` | `string` |
|
|
176
|
+
| `web?` | `Object` |
|
|
177
|
+
| `web.createNewTester?` | `boolean` |
|
|
178
|
+
| `web.driver?` | `string` |
|
|
179
|
+
| `web.launchpadUrl?` | `string` |
|
|
180
|
+
| `web.maps?` | `string`[] |
|
|
181
|
+
| `web.tester?` | `string` |
|
|
182
|
+
| `web.testerAPIUrl?` | `string` |
|
|
183
|
+
| `web.testerName?` | `string` |
|
|
184
|
+
|
|
185
|
+
#### Defined in
|
|
186
|
+
|
|
187
|
+
[HotStaq.ts:147](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L147)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotSiteMapPath
|
|
2
|
+
|
|
3
|
+
# Interface: HotSiteMapPath
|
|
4
|
+
|
|
5
|
+
A map path for testing.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Properties
|
|
10
|
+
|
|
11
|
+
- [autoStart](HotSiteMapPath.md#autostart)
|
|
12
|
+
- [path](HotSiteMapPath.md#path)
|
|
13
|
+
|
|
14
|
+
## Properties
|
|
15
|
+
|
|
16
|
+
### autoStart
|
|
17
|
+
|
|
18
|
+
• `Optional` **autoStart**: `boolean`
|
|
19
|
+
|
|
20
|
+
If set to true, this will start automatically when tests start.
|
|
21
|
+
The default is true.
|
|
22
|
+
|
|
23
|
+
#### Defined in
|
|
24
|
+
|
|
25
|
+
[HotStaq.ts:35](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L35)
|
|
26
|
+
|
|
27
|
+
___
|
|
28
|
+
|
|
29
|
+
### path
|
|
30
|
+
|
|
31
|
+
• `Optional` **path**: `string`
|
|
32
|
+
|
|
33
|
+
The path to the
|
|
34
|
+
|
|
35
|
+
#### Defined in
|
|
36
|
+
|
|
37
|
+
[HotStaq.ts:39](https://github.com/OurFreeLight/HotStaq/blob/b031357/src/HotStaq.ts#L39)
|