@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.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -1
  2. 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, `property` are de-duped. To allow duplicates
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
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unhead/schema",
3
3
  "type": "module",
4
- "version": "0.4.1",
4
+ "version": "0.4.2",
5
5
  "packageManager": "pnpm@7.14.0",
6
6
  "author": "Harlan Wilton <harlan@harlanzw.com>",
7
7
  "license": "MIT",