unhead 2.0.0-alpha.10 → 2.0.0-alpha.12
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/legacy.d.mts +2 -2
- package/dist/legacy.d.ts +2 -2
- package/dist/server.d.mts +1 -1
- package/dist/server.d.ts +1 -1
- package/package.json +1 -1
package/dist/legacy.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { createHeadCore, useHead, useHeadSafe, useSeoMeta } from './index.mjs';
|
|
2
1
|
import { S as Script, A as ActiveHeadEntry, H as HeadEntryOptions, U as Unhead, a as Head, C as CreateHeadOptions } from './shared/unhead.CnmTxLaQ.mjs';
|
|
3
|
-
|
|
2
|
+
export { createHeadCore, useHead, useHeadSafe, useSeoMeta } from './index.mjs';
|
|
4
3
|
import 'hookable';
|
|
4
|
+
import './types.mjs';
|
|
5
5
|
|
|
6
6
|
type UseScriptInput = string | (Omit<Script, 'src'> & {
|
|
7
7
|
src: string;
|
package/dist/legacy.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { createHeadCore, useHead, useHeadSafe, useSeoMeta } from './index.js';
|
|
2
1
|
import { S as Script, A as ActiveHeadEntry, H as HeadEntryOptions, U as Unhead, a as Head, C as CreateHeadOptions } from './shared/unhead.CnmTxLaQ.js';
|
|
3
|
-
|
|
2
|
+
export { createHeadCore, useHead, useHeadSafe, useSeoMeta } from './index.js';
|
|
4
3
|
import 'hookable';
|
|
4
|
+
import './types.js';
|
|
5
5
|
|
|
6
6
|
type UseScriptInput = string | (Omit<Script, 'src'> & {
|
|
7
7
|
src: string;
|
package/dist/server.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as unhead_types from 'unhead/types';
|
|
2
1
|
import { a as Head, c as CreateServerHeadOptions, U as Unhead, d as RenderSSRHeadOptions, e as SSRHeadPayload, f as HeadTag } from './shared/unhead.CnmTxLaQ.mjs';
|
|
2
|
+
import * as unhead_types from 'unhead/types';
|
|
3
3
|
import 'hookable';
|
|
4
4
|
|
|
5
5
|
declare function createHead<T extends Record<string, any> = Head>(options?: CreateServerHeadOptions): unhead_types.Unhead<T>;
|
package/dist/server.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as unhead_types from 'unhead/types';
|
|
2
1
|
import { a as Head, c as CreateServerHeadOptions, U as Unhead, d as RenderSSRHeadOptions, e as SSRHeadPayload, f as HeadTag } from './shared/unhead.CnmTxLaQ.js';
|
|
2
|
+
import * as unhead_types from 'unhead/types';
|
|
3
3
|
import 'hookable';
|
|
4
4
|
|
|
5
5
|
declare function createHead<T extends Record<string, any> = Head>(options?: CreateServerHeadOptions): unhead_types.Unhead<T>;
|