@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.
- package/package.json +1 -1
- package/src/types.ts +1 -1
package/package.json
CHANGED
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
|
}
|