@hyperspan/framework 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperspan/framework",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Hyperspan Web Framework",
5
5
  "main": "src/server.ts",
6
6
  "types": "src/server.ts",
package/src/types.ts CHANGED
@@ -186,6 +186,6 @@ export namespace Hyperspan {
186
186
  * @param loadScript - A function that loads the module or a string of code to load the module
187
187
  * @returns HSHtml Template with the <script type="module"> tag
188
188
  */
189
- renderScriptTag: (loadScript?: ((module: unknown) => HSHtml | string) | string) => HSHtml;
189
+ renderScriptTag: (loadScript?: ((module: unknown) => HSHtml | string | void) | string) => HSHtml;
190
190
  }
191
191
  }