hotstaq 0.5.24
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/.eslintignore +17 -0
- package/.eslintrc.js +11 -0
- package/.vscode/launch.json +199 -0
- package/.vscode/settings.json +2 -0
- package/.vscode/tasks.json +78 -0
- package/CONTRIBUTING.md +157 -0
- package/README.md +126 -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 +130 -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 +239 -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 +92 -0
- package/build/src/HotCreator.d.ts.map +1 -0
- package/build/src/HotCreator.js +465 -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/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 +39 -0
- package/build/src/HotIO.d.ts.map +1 -0
- package/build/src/HotIO.js +195 -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 +601 -0
- package/build/src/HotStaq.d.ts.map +1 -0
- package/build/src/HotStaq.js +1258 -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 +82 -0
- package/build/src/HotTestSeleniumDriver.d.ts.map +1 -0
- package/build/src/HotTestSeleniumDriver.js +398 -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 +623 -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.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 +935 -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 +125 -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 +128 -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 +1153 -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 +529 -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 +162 -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 +378 -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 +482 -0
- package/src/HotDB.ts +79 -0
- package/src/HotDBConnectionInterface.ts +40 -0
- package/src/HotFile.ts +617 -0
- package/src/HotHTTPServer.ts +954 -0
- package/src/HotIO.ts +128 -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 +1877 -0
- package/src/HotStaqWeb.ts +59 -0
- package/src/HotTestDriver.ts +172 -0
- package/src/HotTestElement.ts +97 -0
- package/src/HotTestMap.ts +130 -0
- package/src/HotTestSeleniumDriver.ts +374 -0
- package/src/HotTester.ts +697 -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.ts +102 -0
- package/src/cli.ts +1147 -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/tsconfig-web.json +74 -0
- package/tsconfig.json +73 -0
- package/webpack.config.js +51 -0
- package/webpack.config.tests.js +56 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotSiteRoute
|
|
2
|
+
|
|
3
|
+
# Interface: HotSiteRoute
|
|
4
|
+
|
|
5
|
+
A route used in a HotSite.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Properties
|
|
10
|
+
|
|
11
|
+
- [api](HotSiteRoute.md#api)
|
|
12
|
+
- [destinationOrder](HotSiteRoute.md#destinationorder)
|
|
13
|
+
- [map](HotSiteRoute.md#map)
|
|
14
|
+
- [name](HotSiteRoute.md#name)
|
|
15
|
+
- [url](HotSiteRoute.md#url)
|
|
16
|
+
|
|
17
|
+
## Properties
|
|
18
|
+
|
|
19
|
+
### api
|
|
20
|
+
|
|
21
|
+
• `Optional` **api**: `string`
|
|
22
|
+
|
|
23
|
+
The name of the API to interface with.
|
|
24
|
+
|
|
25
|
+
#### Defined in
|
|
26
|
+
|
|
27
|
+
[HotStaq.ts:58](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L58)
|
|
28
|
+
|
|
29
|
+
___
|
|
30
|
+
|
|
31
|
+
### destinationOrder
|
|
32
|
+
|
|
33
|
+
• `Optional` **destinationOrder**: `string`[]
|
|
34
|
+
|
|
35
|
+
The order in which destinations are supposed to execute. This is
|
|
36
|
+
ignored if the destinations are an array.
|
|
37
|
+
|
|
38
|
+
#### Defined in
|
|
39
|
+
|
|
40
|
+
[HotStaq.ts:63](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L63)
|
|
41
|
+
|
|
42
|
+
___
|
|
43
|
+
|
|
44
|
+
### map
|
|
45
|
+
|
|
46
|
+
• `Optional` **map**: `string` \| `string`[] \| { [name: string]: `string` \| [`HotSiteMapPath`](HotSiteMapPath.md); } \| [`HotSiteMapPath`](HotSiteMapPath.md)[]
|
|
47
|
+
|
|
48
|
+
The HotTesterMap to use. This can be the name of an
|
|
49
|
+
existing one attached to the selected tester, or
|
|
50
|
+
can be an array of destinations that will be used to
|
|
51
|
+
create a new map.
|
|
52
|
+
|
|
53
|
+
#### Defined in
|
|
54
|
+
|
|
55
|
+
[HotStaq.ts:70](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L70)
|
|
56
|
+
|
|
57
|
+
___
|
|
58
|
+
|
|
59
|
+
### name
|
|
60
|
+
|
|
61
|
+
• **name**: `string`
|
|
62
|
+
|
|
63
|
+
The name of the route. Will appear in the title.
|
|
64
|
+
|
|
65
|
+
#### Defined in
|
|
66
|
+
|
|
67
|
+
[HotStaq.ts:50](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L50)
|
|
68
|
+
|
|
69
|
+
___
|
|
70
|
+
|
|
71
|
+
### url
|
|
72
|
+
|
|
73
|
+
• **url**: `string`
|
|
74
|
+
|
|
75
|
+
The url to the file to load.
|
|
76
|
+
|
|
77
|
+
#### Defined in
|
|
78
|
+
|
|
79
|
+
[HotStaq.ts:54](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L54)
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotStartOptions
|
|
2
|
+
|
|
3
|
+
# Interface: HotStartOptions
|
|
4
|
+
|
|
5
|
+
The options to use when starting a page.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Properties
|
|
10
|
+
|
|
11
|
+
- [args](HotStartOptions.md#args)
|
|
12
|
+
- [name](HotStartOptions.md#name)
|
|
13
|
+
- [processor](HotStartOptions.md#processor)
|
|
14
|
+
- [testerAPIBaseUrl](HotStartOptions.md#testerapibaseurl)
|
|
15
|
+
- [testerLaunchpadUrl](HotStartOptions.md#testerlaunchpadurl)
|
|
16
|
+
- [testerMap](HotStartOptions.md#testermap)
|
|
17
|
+
- [testerName](HotStartOptions.md#testername)
|
|
18
|
+
- [url](HotStartOptions.md#url)
|
|
19
|
+
|
|
20
|
+
## Properties
|
|
21
|
+
|
|
22
|
+
### args
|
|
23
|
+
|
|
24
|
+
• `Optional` **args**: `any`
|
|
25
|
+
|
|
26
|
+
Any arguments to pass to the new page.
|
|
27
|
+
|
|
28
|
+
#### Defined in
|
|
29
|
+
|
|
30
|
+
[HotStaq.ts:313](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L313)
|
|
31
|
+
|
|
32
|
+
___
|
|
33
|
+
|
|
34
|
+
### name
|
|
35
|
+
|
|
36
|
+
• `Optional` **name**: `string`
|
|
37
|
+
|
|
38
|
+
The name of the page to load.
|
|
39
|
+
|
|
40
|
+
#### Defined in
|
|
41
|
+
|
|
42
|
+
[HotStaq.ts:305](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L305)
|
|
43
|
+
|
|
44
|
+
___
|
|
45
|
+
|
|
46
|
+
### processor
|
|
47
|
+
|
|
48
|
+
• `Optional` **processor**: [`HotStaq`](../classes/HotStaq.md)
|
|
49
|
+
|
|
50
|
+
The processor to use to load the page.
|
|
51
|
+
|
|
52
|
+
#### Defined in
|
|
53
|
+
|
|
54
|
+
[HotStaq.ts:309](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L309)
|
|
55
|
+
|
|
56
|
+
___
|
|
57
|
+
|
|
58
|
+
### testerAPIBaseUrl
|
|
59
|
+
|
|
60
|
+
• `Optional` **testerAPIBaseUrl**: `string`
|
|
61
|
+
|
|
62
|
+
The base url for the tester api.
|
|
63
|
+
|
|
64
|
+
#### Defined in
|
|
65
|
+
|
|
66
|
+
[HotStaq.ts:325](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L325)
|
|
67
|
+
|
|
68
|
+
___
|
|
69
|
+
|
|
70
|
+
### testerLaunchpadUrl
|
|
71
|
+
|
|
72
|
+
• `Optional` **testerLaunchpadUrl**: `string`
|
|
73
|
+
|
|
74
|
+
The url to the html that loads the hott file that's
|
|
75
|
+
pointed at the url above.
|
|
76
|
+
|
|
77
|
+
#### Defined in
|
|
78
|
+
|
|
79
|
+
[HotStaq.ts:330](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L330)
|
|
80
|
+
|
|
81
|
+
___
|
|
82
|
+
|
|
83
|
+
### testerMap
|
|
84
|
+
|
|
85
|
+
• `Optional` **testerMap**: `string`
|
|
86
|
+
|
|
87
|
+
The name of the tester map to use.
|
|
88
|
+
|
|
89
|
+
#### Defined in
|
|
90
|
+
|
|
91
|
+
[HotStaq.ts:321](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L321)
|
|
92
|
+
|
|
93
|
+
___
|
|
94
|
+
|
|
95
|
+
### testerName
|
|
96
|
+
|
|
97
|
+
• `Optional` **testerName**: `string`
|
|
98
|
+
|
|
99
|
+
The name of the tester to use.
|
|
100
|
+
|
|
101
|
+
#### Defined in
|
|
102
|
+
|
|
103
|
+
[HotStaq.ts:317](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L317)
|
|
104
|
+
|
|
105
|
+
___
|
|
106
|
+
|
|
107
|
+
### url
|
|
108
|
+
|
|
109
|
+
• **url**: `string`
|
|
110
|
+
|
|
111
|
+
The Hott site to load.
|
|
112
|
+
|
|
113
|
+
#### Defined in
|
|
114
|
+
|
|
115
|
+
[HotStaq.ts:301](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L301)
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotTestPage
|
|
2
|
+
|
|
3
|
+
# Interface: HotTestPage
|
|
4
|
+
|
|
5
|
+
A page containing only test related info.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Properties
|
|
10
|
+
|
|
11
|
+
- [testElements](HotTestPage.md#testelements)
|
|
12
|
+
- [testPaths](HotTestPage.md#testpaths)
|
|
13
|
+
|
|
14
|
+
## Properties
|
|
15
|
+
|
|
16
|
+
### testElements
|
|
17
|
+
|
|
18
|
+
• **testElements**: `Object`
|
|
19
|
+
|
|
20
|
+
The elements to test on this map.
|
|
21
|
+
|
|
22
|
+
#### Index signature
|
|
23
|
+
|
|
24
|
+
▪ [name: `string`]: [`HotTestElement`](../classes/HotTestElement.md)
|
|
25
|
+
|
|
26
|
+
#### Defined in
|
|
27
|
+
|
|
28
|
+
[HotTestMap.ts:56](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTestMap.ts#L56)
|
|
29
|
+
|
|
30
|
+
___
|
|
31
|
+
|
|
32
|
+
### testPaths
|
|
33
|
+
|
|
34
|
+
• **testPaths**: `Object`
|
|
35
|
+
|
|
36
|
+
The test paths to test on this map.
|
|
37
|
+
|
|
38
|
+
#### Index signature
|
|
39
|
+
|
|
40
|
+
▪ [name: `string`]: [`HotTestPath`](../modules.md#hottestpath)
|
|
41
|
+
|
|
42
|
+
#### Defined in
|
|
43
|
+
|
|
44
|
+
[HotTestMap.ts:60](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTestMap.ts#L60)
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / HotTestStop
|
|
2
|
+
|
|
3
|
+
# Interface: HotTestStop
|
|
4
|
+
|
|
5
|
+
The test stop that is executed as either a destination or
|
|
6
|
+
a path.
|
|
7
|
+
|
|
8
|
+
## Table of contents
|
|
9
|
+
|
|
10
|
+
### Properties
|
|
11
|
+
|
|
12
|
+
- [cmd](HotTestStop.md#cmd)
|
|
13
|
+
- [dest](HotTestStop.md#dest)
|
|
14
|
+
- [path](HotTestStop.md#path)
|
|
15
|
+
|
|
16
|
+
## Properties
|
|
17
|
+
|
|
18
|
+
### cmd
|
|
19
|
+
|
|
20
|
+
• **cmd**: `string`
|
|
21
|
+
|
|
22
|
+
A command to execute. Can be:
|
|
23
|
+
* print(x)
|
|
24
|
+
* Print a message to the server's console.
|
|
25
|
+
* println(x)
|
|
26
|
+
* Print a message with a new line to the server's console.
|
|
27
|
+
* url(x)
|
|
28
|
+
* Open a url. Must be an absolute url.
|
|
29
|
+
* waitForTesterAPIData
|
|
30
|
+
* This will wait for the tester API to receive data.
|
|
31
|
+
* wait(x)
|
|
32
|
+
* This will wait for x number of milliseconds.
|
|
33
|
+
* waitForTestObject(x)
|
|
34
|
+
* This will wait for a test object to be loaded.
|
|
35
|
+
|
|
36
|
+
#### Defined in
|
|
37
|
+
|
|
38
|
+
[HotTester.ts:28](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTester.ts#L28)
|
|
39
|
+
|
|
40
|
+
___
|
|
41
|
+
|
|
42
|
+
### dest
|
|
43
|
+
|
|
44
|
+
• **dest**: `string`
|
|
45
|
+
|
|
46
|
+
The destination to execute.
|
|
47
|
+
|
|
48
|
+
#### Defined in
|
|
49
|
+
|
|
50
|
+
[HotTester.ts:32](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTester.ts#L32)
|
|
51
|
+
|
|
52
|
+
___
|
|
53
|
+
|
|
54
|
+
### path
|
|
55
|
+
|
|
56
|
+
• **path**: `string`
|
|
57
|
+
|
|
58
|
+
The path to execute.
|
|
59
|
+
|
|
60
|
+
#### Defined in
|
|
61
|
+
|
|
62
|
+
[HotTester.ts:36](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTester.ts#L36)
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / IHotComponent
|
|
2
|
+
|
|
3
|
+
# Interface: IHotComponent
|
|
4
|
+
|
|
5
|
+
A component to preprocess.
|
|
6
|
+
|
|
7
|
+
## Implemented by
|
|
8
|
+
|
|
9
|
+
- [`HotComponent`](../classes/HotComponent.md)
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [api](IHotComponent.md#api)
|
|
16
|
+
- [elementOptions](IHotComponent.md#elementoptions)
|
|
17
|
+
- [events](IHotComponent.md#events)
|
|
18
|
+
- [htmlElement](IHotComponent.md#htmlelement)
|
|
19
|
+
- [name](IHotComponent.md#name)
|
|
20
|
+
- [processor](IHotComponent.md#processor)
|
|
21
|
+
- [tag](IHotComponent.md#tag)
|
|
22
|
+
- [type](IHotComponent.md#type)
|
|
23
|
+
- [value](IHotComponent.md#value)
|
|
24
|
+
|
|
25
|
+
## Properties
|
|
26
|
+
|
|
27
|
+
### api
|
|
28
|
+
|
|
29
|
+
• `Optional` **api**: [`HotAPI`](../classes/HotAPI.md)
|
|
30
|
+
|
|
31
|
+
The connected API.
|
|
32
|
+
|
|
33
|
+
#### Defined in
|
|
34
|
+
|
|
35
|
+
[HotComponent.ts:28](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotComponent.ts#L28)
|
|
36
|
+
|
|
37
|
+
___
|
|
38
|
+
|
|
39
|
+
### elementOptions
|
|
40
|
+
|
|
41
|
+
• `Optional` **elementOptions**: `ElementDefinitionOptions`
|
|
42
|
+
|
|
43
|
+
The options to include with registering this component.
|
|
44
|
+
|
|
45
|
+
#### Defined in
|
|
46
|
+
|
|
47
|
+
[HotComponent.ts:32](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotComponent.ts#L32)
|
|
48
|
+
|
|
49
|
+
___
|
|
50
|
+
|
|
51
|
+
### events
|
|
52
|
+
|
|
53
|
+
• `Optional` **events**: `Object`
|
|
54
|
+
|
|
55
|
+
The events to trigger.
|
|
56
|
+
|
|
57
|
+
#### Index signature
|
|
58
|
+
|
|
59
|
+
▪ [name: `string`]: { `func`: `Function` ; `options?`: `any` ; `type`: `string` }
|
|
60
|
+
|
|
61
|
+
#### Defined in
|
|
62
|
+
|
|
63
|
+
[HotComponent.ts:44](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotComponent.ts#L44)
|
|
64
|
+
|
|
65
|
+
___
|
|
66
|
+
|
|
67
|
+
### htmlElement
|
|
68
|
+
|
|
69
|
+
• `Optional` **htmlElement**: `HTMLElement`
|
|
70
|
+
|
|
71
|
+
The associated HTMLElement.
|
|
72
|
+
|
|
73
|
+
#### Defined in
|
|
74
|
+
|
|
75
|
+
[HotComponent.ts:16](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotComponent.ts#L16)
|
|
76
|
+
|
|
77
|
+
___
|
|
78
|
+
|
|
79
|
+
### name
|
|
80
|
+
|
|
81
|
+
• `Optional` **name**: `string`
|
|
82
|
+
|
|
83
|
+
The name of the page.
|
|
84
|
+
|
|
85
|
+
#### Defined in
|
|
86
|
+
|
|
87
|
+
[HotComponent.ts:20](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotComponent.ts#L20)
|
|
88
|
+
|
|
89
|
+
___
|
|
90
|
+
|
|
91
|
+
### processor
|
|
92
|
+
|
|
93
|
+
• **processor**: [`HotStaq`](../classes/HotStaq.md)
|
|
94
|
+
|
|
95
|
+
The processor to use.
|
|
96
|
+
|
|
97
|
+
#### Defined in
|
|
98
|
+
|
|
99
|
+
[HotComponent.ts:12](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotComponent.ts#L12)
|
|
100
|
+
|
|
101
|
+
___
|
|
102
|
+
|
|
103
|
+
### tag
|
|
104
|
+
|
|
105
|
+
• `Optional` **tag**: `string`
|
|
106
|
+
|
|
107
|
+
The name of the tag.
|
|
108
|
+
|
|
109
|
+
#### Defined in
|
|
110
|
+
|
|
111
|
+
[HotComponent.ts:24](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotComponent.ts#L24)
|
|
112
|
+
|
|
113
|
+
___
|
|
114
|
+
|
|
115
|
+
### type
|
|
116
|
+
|
|
117
|
+
• `Optional` **type**: `string`
|
|
118
|
+
|
|
119
|
+
The type of component.
|
|
120
|
+
|
|
121
|
+
#### Defined in
|
|
122
|
+
|
|
123
|
+
[HotComponent.ts:36](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotComponent.ts#L36)
|
|
124
|
+
|
|
125
|
+
___
|
|
126
|
+
|
|
127
|
+
### value
|
|
128
|
+
|
|
129
|
+
• `Optional` **value**: `any`
|
|
130
|
+
|
|
131
|
+
The value of the component.
|
|
132
|
+
|
|
133
|
+
#### Defined in
|
|
134
|
+
|
|
135
|
+
[HotComponent.ts:40](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotComponent.ts#L40)
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / IHotStaq
|
|
2
|
+
|
|
3
|
+
# Interface: IHotStaq
|
|
4
|
+
|
|
5
|
+
The main class that handles all HTML preprocessing, then outputs the
|
|
6
|
+
results.
|
|
7
|
+
|
|
8
|
+
## Implemented by
|
|
9
|
+
|
|
10
|
+
- [`HotStaq`](../classes/HotStaq.md)
|
|
11
|
+
|
|
12
|
+
## Table of contents
|
|
13
|
+
|
|
14
|
+
### Properties
|
|
15
|
+
|
|
16
|
+
- [api](IHotStaq.md#api)
|
|
17
|
+
- [components](IHotStaq.md#components)
|
|
18
|
+
- [files](IHotStaq.md#files)
|
|
19
|
+
- [hotSite](IHotStaq.md#hotsite)
|
|
20
|
+
- [mode](IHotStaq.md#mode)
|
|
21
|
+
- [pages](IHotStaq.md#pages)
|
|
22
|
+
- [testerAPI](IHotStaq.md#testerapi)
|
|
23
|
+
|
|
24
|
+
## Properties
|
|
25
|
+
|
|
26
|
+
### api
|
|
27
|
+
|
|
28
|
+
• `Optional` **api**: [`HotAPI`](../classes/HotAPI.md)
|
|
29
|
+
|
|
30
|
+
The api that's used to communicate with.
|
|
31
|
+
|
|
32
|
+
#### Defined in
|
|
33
|
+
|
|
34
|
+
[HotStaq.ts:342](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L342)
|
|
35
|
+
|
|
36
|
+
___
|
|
37
|
+
|
|
38
|
+
### components
|
|
39
|
+
|
|
40
|
+
• `Optional` **components**: `Object`
|
|
41
|
+
|
|
42
|
+
The components that can be constructed.
|
|
43
|
+
|
|
44
|
+
#### Index signature
|
|
45
|
+
|
|
46
|
+
▪ [name: `string`]: [`HotComponent`](../classes/HotComponent.md)
|
|
47
|
+
|
|
48
|
+
#### Defined in
|
|
49
|
+
|
|
50
|
+
[HotStaq.ts:358](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L358)
|
|
51
|
+
|
|
52
|
+
___
|
|
53
|
+
|
|
54
|
+
### files
|
|
55
|
+
|
|
56
|
+
• `Optional` **files**: `Object`
|
|
57
|
+
|
|
58
|
+
The files that can be stored for later use.
|
|
59
|
+
|
|
60
|
+
#### Index signature
|
|
61
|
+
|
|
62
|
+
▪ [name: `string`]: [`HotFile`](../classes/HotFile.md)
|
|
63
|
+
|
|
64
|
+
#### Defined in
|
|
65
|
+
|
|
66
|
+
[HotStaq.ts:362](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L362)
|
|
67
|
+
|
|
68
|
+
___
|
|
69
|
+
|
|
70
|
+
### hotSite
|
|
71
|
+
|
|
72
|
+
• `Optional` **hotSite**: [`HotSite`](HotSite.md)
|
|
73
|
+
|
|
74
|
+
The loaded hotsite.
|
|
75
|
+
|
|
76
|
+
#### Defined in
|
|
77
|
+
|
|
78
|
+
[HotStaq.ts:366](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L366)
|
|
79
|
+
|
|
80
|
+
___
|
|
81
|
+
|
|
82
|
+
### mode
|
|
83
|
+
|
|
84
|
+
• `Optional` **mode**: [`DeveloperMode`](../enums/DeveloperMode.md)
|
|
85
|
+
|
|
86
|
+
Indicates what type of execution this is.
|
|
87
|
+
|
|
88
|
+
#### Defined in
|
|
89
|
+
|
|
90
|
+
[HotStaq.ts:350](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L350)
|
|
91
|
+
|
|
92
|
+
___
|
|
93
|
+
|
|
94
|
+
### pages
|
|
95
|
+
|
|
96
|
+
• `Optional` **pages**: `Object`
|
|
97
|
+
|
|
98
|
+
The pages that can be constructed.
|
|
99
|
+
|
|
100
|
+
#### Index signature
|
|
101
|
+
|
|
102
|
+
▪ [name: `string`]: [`HotPage`](../classes/HotPage.md)
|
|
103
|
+
|
|
104
|
+
#### Defined in
|
|
105
|
+
|
|
106
|
+
[HotStaq.ts:354](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L354)
|
|
107
|
+
|
|
108
|
+
___
|
|
109
|
+
|
|
110
|
+
### testerAPI
|
|
111
|
+
|
|
112
|
+
• `Optional` **testerAPI**: [`HotAPI`](../classes/HotAPI.md)
|
|
113
|
+
|
|
114
|
+
The tester api that's used to communicate with.
|
|
115
|
+
|
|
116
|
+
#### Defined in
|
|
117
|
+
|
|
118
|
+
[HotStaq.ts:346](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotStaq.ts#L346)
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / IHotTestElement
|
|
2
|
+
|
|
3
|
+
# Interface: IHotTestElement
|
|
4
|
+
|
|
5
|
+
A test element.
|
|
6
|
+
|
|
7
|
+
## Implemented by
|
|
8
|
+
|
|
9
|
+
- [`HotTestElement`](../classes/HotTestElement.md)
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [func](IHotTestElement.md#func)
|
|
16
|
+
- [name](IHotTestElement.md#name)
|
|
17
|
+
- [value](IHotTestElement.md#value)
|
|
18
|
+
|
|
19
|
+
## Properties
|
|
20
|
+
|
|
21
|
+
### func
|
|
22
|
+
|
|
23
|
+
• `Optional` **func**: `string`
|
|
24
|
+
|
|
25
|
+
The name of the function to execute
|
|
26
|
+
while executing the test.
|
|
27
|
+
|
|
28
|
+
#### Defined in
|
|
29
|
+
|
|
30
|
+
[HotTestElement.ts:56](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTestElement.ts#L56)
|
|
31
|
+
|
|
32
|
+
___
|
|
33
|
+
|
|
34
|
+
### name
|
|
35
|
+
|
|
36
|
+
• **name**: `string`
|
|
37
|
+
|
|
38
|
+
The name of the element.
|
|
39
|
+
|
|
40
|
+
#### Defined in
|
|
41
|
+
|
|
42
|
+
[HotTestElement.ts:51](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTestElement.ts#L51)
|
|
43
|
+
|
|
44
|
+
___
|
|
45
|
+
|
|
46
|
+
### value
|
|
47
|
+
|
|
48
|
+
• `Optional` **value**: `any`
|
|
49
|
+
|
|
50
|
+
The value to use.
|
|
51
|
+
|
|
52
|
+
#### Defined in
|
|
53
|
+
|
|
54
|
+
[HotTestElement.ts:60](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTestElement.ts#L60)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / IHotTestElementOptions
|
|
2
|
+
|
|
3
|
+
# Interface: IHotTestElementOptions
|
|
4
|
+
|
|
5
|
+
Hot test element options.
|
|
6
|
+
|
|
7
|
+
## Implemented by
|
|
8
|
+
|
|
9
|
+
- [`HotTestElementOptions`](../classes/HotTestElementOptions.md)
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [ignoreMissingElementError](IHotTestElementOptions.md#ignoremissingelementerror)
|
|
16
|
+
- [mustBeVisible](IHotTestElementOptions.md#mustbevisible)
|
|
17
|
+
|
|
18
|
+
## Properties
|
|
19
|
+
|
|
20
|
+
### ignoreMissingElementError
|
|
21
|
+
|
|
22
|
+
• `Optional` **ignoreMissingElementError**: `boolean`
|
|
23
|
+
|
|
24
|
+
If the test element is missing, ignore the error. This
|
|
25
|
+
will cause the rest of the function to return immediately
|
|
26
|
+
without any exceptions being thrown.
|
|
27
|
+
|
|
28
|
+
#### Defined in
|
|
29
|
+
|
|
30
|
+
[HotTestElement.ts:16](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTestElement.ts#L16)
|
|
31
|
+
|
|
32
|
+
___
|
|
33
|
+
|
|
34
|
+
### mustBeVisible
|
|
35
|
+
|
|
36
|
+
• `Optional` **mustBeVisible**: `boolean`
|
|
37
|
+
|
|
38
|
+
Indicates that the test element must be visible in
|
|
39
|
+
order to select it.
|
|
40
|
+
|
|
41
|
+
#### Defined in
|
|
42
|
+
|
|
43
|
+
[HotTestElement.ts:10](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/HotTestElement.ts#L10)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[hotstaq](../README.md) / [Modules](../modules.md) / MySQLResults
|
|
2
|
+
|
|
3
|
+
# Interface: MySQLResults
|
|
4
|
+
|
|
5
|
+
The database results.
|
|
6
|
+
|
|
7
|
+
## Table of contents
|
|
8
|
+
|
|
9
|
+
### Properties
|
|
10
|
+
|
|
11
|
+
- [error](MySQLResults.md#error)
|
|
12
|
+
- [fields](MySQLResults.md#fields)
|
|
13
|
+
- [results](MySQLResults.md#results)
|
|
14
|
+
|
|
15
|
+
## Properties
|
|
16
|
+
|
|
17
|
+
### error
|
|
18
|
+
|
|
19
|
+
• **error**: `any`
|
|
20
|
+
|
|
21
|
+
#### Defined in
|
|
22
|
+
|
|
23
|
+
[schemas/HotDBMySQL.ts:17](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/schemas/HotDBMySQL.ts#L17)
|
|
24
|
+
|
|
25
|
+
___
|
|
26
|
+
|
|
27
|
+
### fields
|
|
28
|
+
|
|
29
|
+
• **fields**: `FieldInfo`[]
|
|
30
|
+
|
|
31
|
+
#### Defined in
|
|
32
|
+
|
|
33
|
+
[schemas/HotDBMySQL.ts:19](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/schemas/HotDBMySQL.ts#L19)
|
|
34
|
+
|
|
35
|
+
___
|
|
36
|
+
|
|
37
|
+
### results
|
|
38
|
+
|
|
39
|
+
• **results**: `any`
|
|
40
|
+
|
|
41
|
+
#### Defined in
|
|
42
|
+
|
|
43
|
+
[schemas/HotDBMySQL.ts:18](https://github.com/OurFreeLight/HotStaq/blob/3f2c5d8/src/schemas/HotDBMySQL.ts#L18)
|