@unhead/schema 1.9.14 → 1.9.15
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/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -535,7 +535,7 @@ interface UseScriptOptions<T> extends HeadEntryOptions {
|
|
|
535
535
|
* Stub the script instance. Useful for SSR or testing.
|
|
536
536
|
*/
|
|
537
537
|
stub?: ((ctx: {
|
|
538
|
-
script:
|
|
538
|
+
script: ScriptInstance<T>;
|
|
539
539
|
fn: string | symbol;
|
|
540
540
|
}) => any);
|
|
541
541
|
/**
|
package/dist/index.d.mts
CHANGED
|
@@ -535,7 +535,7 @@ interface UseScriptOptions<T> extends HeadEntryOptions {
|
|
|
535
535
|
* Stub the script instance. Useful for SSR or testing.
|
|
536
536
|
*/
|
|
537
537
|
stub?: ((ctx: {
|
|
538
|
-
script:
|
|
538
|
+
script: ScriptInstance<T>;
|
|
539
539
|
fn: string | symbol;
|
|
540
540
|
}) => any);
|
|
541
541
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -535,7 +535,7 @@ interface UseScriptOptions<T> extends HeadEntryOptions {
|
|
|
535
535
|
* Stub the script instance. Useful for SSR or testing.
|
|
536
536
|
*/
|
|
537
537
|
stub?: ((ctx: {
|
|
538
|
-
script:
|
|
538
|
+
script: ScriptInstance<T>;
|
|
539
539
|
fn: string | symbol;
|
|
540
540
|
}) => any);
|
|
541
541
|
/**
|