@unhead/schema 0.4.1 → 0.4.2
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.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { NestedHooks, Hookable } from 'hookable';
|
|
|
4
4
|
|
|
5
5
|
interface ResolvesDuplicates {
|
|
6
6
|
/**
|
|
7
|
-
* By default, tags which share the same unique key `name
|
|
7
|
+
* By default, tags which share the same unique key `name`, `property` are de-duped. To allow duplicates
|
|
8
8
|
* to be made you can provide a unique key for each entry.
|
|
9
9
|
*/
|
|
10
10
|
key?: string;
|
|
@@ -330,6 +330,10 @@ interface Unhead<Input extends {} = Head> {
|
|
|
330
330
|
* Exposed hooks for easier extension.
|
|
331
331
|
*/
|
|
332
332
|
hooks: Hookable<HeadHooks>;
|
|
333
|
+
/**
|
|
334
|
+
* Resolved options
|
|
335
|
+
*/
|
|
336
|
+
resolvedOptions: CreateHeadOptions;
|
|
333
337
|
/**
|
|
334
338
|
* @internal
|
|
335
339
|
*/
|